Skip to content

Commit 3581e28

Browse files
authored
Point Issue Reporting to xctest-dynamic-overlay repo (#40)
Swift Package Manager honors redirects, but it appears to associate the path suffix with the package name, and this conflicts with package resolution in certain (but not all) cases. I think we have no choice but to roll back everything to point to the original xctest-dynamic-overlay URL and extract Issue Reporting to a dedicated repo.
1 parent 67b063d commit 3581e28

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
}
2929
},
3030
{
31-
"identity" : "swift-issue-reporting",
31+
"identity" : "xctest-dynamic-overlay",
3232
"kind" : "remoteSourceControl",
33-
"location" : "https://github.com/pointfreeco/swift-issue-reporting",
33+
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
3434
"state" : {
35-
"revision" : "926f43898706eaa127db79ac42138e1ad7e85a3f",
36-
"version" : "1.2.0"
35+
"revision" : "357ca1e5dd31f613a1d43320870ebc219386a495",
36+
"version" : "1.2.2"
3737
}
3838
}
3939
],

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ let package = Package(
2222
dependencies: [
2323
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
2424
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"),
25-
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0"),
25+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2"),
2626
],
2727
targets: [
2828
.target(
2929
name: "Clocks",
3030
dependencies: [
3131
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
32-
.product(name: "IssueReporting", package: "swift-issue-reporting"),
32+
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
3333
]
3434
),
3535
.testTarget(

[email protected]

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ let package = Package(
2222
dependencies: [
2323
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
2424
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"),
25-
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0"),
25+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2"),
2626
],
2727
targets: [
2828
.target(
2929
name: "Clocks",
3030
dependencies: [
3131
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
32-
.product(name: "IssueReporting", package: "swift-issue-reporting"),
32+
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
3333
]
3434
),
3535
.testTarget(

0 commit comments

Comments
 (0)