Skip to content

Commit

Permalink
Merge pull request #11 from SwiftRex/update-snapshot-testing-dependency
Browse files Browse the repository at this point in the history
Update to swift-snapshot-testing 1.10.0
  • Loading branch information
luizmb authored Sep 28, 2022
2 parents ad1728c + 989a594 commit 6dd44bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ let package = Package(
.library(name: "TestingExtensionsDynamic", type: .dynamic, targets: ["TestingExtensions"])
],
dependencies: [
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .upToNextMajor(from: "1.8.2")),
.package(name: "swift-snapshot-testing", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .upToNextMajor(from: "1.10.0")),
.package(name: "SwiftRex", url: "https://github.com/SwiftRex/SwiftRex.git", .upToNextMajor(from: "0.8.12"))
],
targets: [
.target(
name: "TestingExtensions",
dependencies: [
"SnapshotTesting", .product(name: "CombineRexDynamic", package: "SwiftRex")
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
.product(name: "CombineRexDynamic", package: "SwiftRex")
]
)
]
Expand Down

0 comments on commit 6dd44bd

Please sign in to comment.