Skip to content

Commit 1552c8f

Browse files
authored
Point Issue Reporting to xctest-dynamic-overlay repo (#95)
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 2c75ce5 commit 1552c8f

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

Example/Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ let package = Package(
1515
.library(name: "Perception", targets: ["Perception"])
1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "1.2.0"),
1918
.package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.1.0"),
2019
.package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease"),
20+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.2.2"),
2121
],
2222
targets: [
2323
.target(
2424
name: "Perception",
2525
dependencies: [
2626
"PerceptionMacros",
27-
.product(name: "IssueReporting", package: "swift-issue-reporting"),
27+
.product(name: "IssueReporting", package: "xctest-dynamic-overlay"),
2828
]
2929
),
3030
.testTarget(

0 commit comments

Comments
 (0)