Skip to content

Commit

Permalink
0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dankinsoid committed Mar 4, 2024
1 parent 21a57d8 commit a8f4350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/VDStore.git", from: "0.16.0")
.package(url: "https://github.com/dankinsoid/VDStore.git", from: "0.17.0")
],
targets: [
.target(name: "SomeProject", dependencies: ["VDStore"])
Expand Down
2 changes: 1 addition & 1 deletion Tests/VDStoreTests/VDStoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ final class VDStoreTests: XCTestCase {
let value = await store.asyncTask()
XCTAssertEqual(value, 6)
}
#endif

func testNumberOfUpdates() async {
let store = Store(Counter())
Expand All @@ -116,6 +115,7 @@ final class VDStoreTests: XCTestCase {
await fulfillment(of: [expectation], timeout: 0.1)
XCTAssertEqual(count, 2)
}
#endif
}

struct Counter: Equatable {
Expand Down

0 comments on commit a8f4350

Please sign in to comment.