Skip to content

Commit aec6a73

Browse files
authored
Point Issue Reporting to xctest-dynamic-overlay repo (#126)
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 bb20934 commit aec6a73

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"pins" : [
33
{
4-
"identity" : "swift-issue-reporting",
4+
"identity" : "xctest-dynamic-overlay",
55
"kind" : "remoteSourceControl",
6-
"location" : "https://github.com/pointfreeco/swift-issue-reporting",
6+
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
77
"state" : {
8-
"revision" : "926f43898706eaa127db79ac42138e1ad7e85a3f",
9-
"version" : "1.2.0"
8+
"revision" : "357ca1e5dd31f613a1d43320870ebc219386a495",
9+
"version" : "1.2.2"
1010
}
1111
}
1212
],

Package.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ let package = Package(
1717
)
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0")
20+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2")
2121
],
2222
targets: [
2323
.target(
2424
name: "CustomDump",
2525
dependencies: [
26-
.product(name: "IssueReporting", package: "swift-issue-reporting"),
27-
.product(name: "XCTestDynamicOverlay", package: "swift-issue-reporting"),
26+
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
27+
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
2828
],
2929
swiftSettings: [
3030
.enableExperimentalFeature("StrictConcurrency")

[email protected]

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ let package = Package(
1717
)
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0")
20+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2")
2121
],
2222
targets: [
2323
.target(
2424
name: "CustomDump",
2525
dependencies: [
26-
.product(name: "IssueReporting", package: "swift-issue-reporting"),
27-
.product(name: "XCTestDynamicOverlay", package: "swift-issue-reporting"),
26+
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
27+
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
2828
]
2929
),
3030
.testTarget(

0 commit comments

Comments
 (0)