Skip to content

Commit

Permalink
0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dankinsoid committed Mar 17, 2024
1 parent 6b8e2ea commit 2bb5f38
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .swiftformat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
--disable sortDeclarations
--disable blankLinesAtStartOfScope
--disable opaqueGenericParameters
--redundanttype inferred
--enable redundanttype
--header ""
--enable organizeDeclarations
--organizetypes markcategories
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions Examples/TicTacToe/tic-tac-toe/Sources/AppCore/AppCore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import VDStore
@Steps
public struct TicTacToe: Equatable {

public var login = Login()
public var newGame = NewGame()
public var login: Login = Login()
public var newGame: NewGame = NewGame()
}

extension Store<TicTacToe>: LogoutButtonDelegate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public struct Login: Sendable, Equatable {

@Steps
public struct Flow: Equatable, Sendable {
public var twoFactor = TwoFactor(token: "")
public var twoFactor: TwoFactor = TwoFactor(token: "")
public var alert = ""
public var none
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public struct NewGame: Equatable {

@Steps
public struct Flow: Equatable {
public var game = Game(oPlayerName: "", xPlayerName: "")
public var game: Game = Game(oPlayerName: "", xPlayerName: "")
public var none
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/VDStore.git", from: "0.29.0")
.package(url: "https://github.com/dankinsoid/VDStore.git", from: "0.30.0")
],
targets: [
.target(name: "SomeProject", dependencies: ["VDStore"])
Expand Down

0 comments on commit 2bb5f38

Please sign in to comment.