Skip to content

Commit a636ac6

Browse files
authored
Merge pull request #3 from antranapp/fix_naming
Fix naming of swift-snapshot-testing package
2 parents cfdfdd4 + e789e26 commit a636ac6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Package.resolved

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"object": {
33
"pins": [
44
{
5-
"package": "SnapshotTesting",
5+
"package": "swift-snapshot-testing",
66
"repositoryURL": "https://github.com/pointfreeco/swift-snapshot-testing.git",
77
"state": {
88
"branch": null,
9-
"revision": "f8a9c997c3c1dab4e216a8ec9014e23144cbab37",
10-
"version": "1.9.0"
9+
"revision": "f29e2014f6230cf7d5138fc899da51c7f513d467",
10+
"version": "1.10.0"
1111
}
1212
}
1313
]

Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let package = Package(
88
name: "SnapshotTestingHEIC",
99
platforms: [
1010
.iOS(.v11),
11-
.macOS(.v10_13),
11+
.macOS(.v10_15),
1212
.tvOS(.v10)
1313
],
1414
products: [
@@ -17,16 +17,16 @@ let package = Package(
1717
targets: ["SnapshotTestingHEIC"]),
1818
],
1919
dependencies: [
20-
.package(name: "SnapshotTesting",
20+
.package(name: "swift-snapshot-testing",
2121
url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
22-
from: "1.8.0"),
22+
from: "1.10.0"),
2323
],
2424
targets: [
2525
.target(
2626
name: "SnapshotTestingHEIC",
2727
dependencies: [
2828
.product(name: "SnapshotTesting",
29-
package: "SnapshotTesting"),
29+
package: "swift-snapshot-testing"),
3030
]
3131
),
3232
.testTarget(

0 commit comments

Comments
 (0)