Skip to content

Commit 6dd44bd

Browse files
authored
Merge pull request #11 from SwiftRex/update-snapshot-testing-dependency
Update to swift-snapshot-testing 1.10.0
2 parents ad1728c + 989a594 commit 6dd44bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ let package = Package(
1616
.library(name: "TestingExtensionsDynamic", type: .dynamic, targets: ["TestingExtensions"])
1717
],
1818
dependencies: [
19-
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .upToNextMajor(from: "1.8.2")),
19+
.package(name: "swift-snapshot-testing", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .upToNextMajor(from: "1.10.0")),
2020
.package(name: "SwiftRex", url: "https://github.com/SwiftRex/SwiftRex.git", .upToNextMajor(from: "0.8.12"))
2121
],
2222
targets: [
2323
.target(
2424
name: "TestingExtensions",
2525
dependencies: [
26-
"SnapshotTesting", .product(name: "CombineRexDynamic", package: "SwiftRex")
26+
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
27+
.product(name: "CombineRexDynamic", package: "SwiftRex")
2728
]
2829
)
2930
]

0 commit comments

Comments
 (0)