Skip to content

Commit

Permalink
Point Issue Reporting to xctest-dynamic-overlay repo (#126)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stephencelis authored Jul 24, 2024
1 parent bb20934 commit aec6a73
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"pins" : [
{
"identity" : "swift-issue-reporting",
"identity" : "xctest-dynamic-overlay",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-issue-reporting",
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state" : {
"revision" : "926f43898706eaa127db79ac42138e1ad7e85a3f",
"version" : "1.2.0"
"revision" : "357ca1e5dd31f613a1d43320870ebc219386a495",
"version" : "1.2.2"
}
}
],
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0")
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2")
],
targets: [
.target(
name: "CustomDump",
dependencies: [
.product(name: "IssueReporting", package: "swift-issue-reporting"),
.product(name: "XCTestDynamicOverlay", package: "swift-issue-reporting"),
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
Expand Down
6 changes: 3 additions & 3 deletions Package@swift-6.0.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0")
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2")
],
targets: [
.target(
name: "CustomDump",
dependencies: [
.product(name: "IssueReporting", package: "swift-issue-reporting"),
.product(name: "XCTestDynamicOverlay", package: "swift-issue-reporting"),
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
]
),
.testTarget(
Expand Down

0 comments on commit aec6a73

Please sign in to comment.