diff --git a/Package.resolved b/Package.resolved index 7ae7ea869..51de824da 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "fdc10853c1416eddaab5f368180b2890aa34ef46ff72e4ae1e58d0d63371abe5", + "originHash" : "6f952e6e44339e79bb92415941e91453c4c110e1e008cff88db8373512bd8106", "pins" : [ { "identity" : "swift-case-paths", @@ -37,6 +37,15 @@ "version" : "1.0.0" } }, + { + "identity" : "swift-issue-reporting", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-issue-reporting", + "state" : { + "revision" : "d6adc8bc81e8ba37d3ecd094b78450853738a89f", + "version" : "2.0.0" + } + }, { "identity" : "swift-macro-testing", "kind" : "remoteSourceControl", diff --git a/Package.swift b/Package.swift index ef166b0a4..8308100f3 100644 --- a/Package.swift +++ b/Package.swift @@ -63,7 +63,7 @@ let package = Package( .package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.6.0"), .package(url: "https://github.com/pointfreeco/swift-perception", "1.3.4"..<"3.0.0"), .package(url: "https://github.com/pointfreeco/swift-sharing", from: "2.8.0"), - .package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.4.1"), + .package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "2.0.0"), .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"), .package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"605.0.0"), ], @@ -88,7 +88,7 @@ let package = Package( ), .product( name: "IssueReporting", - package: "xctest-dynamic-overlay", + package: "swift-issue-reporting", condition: .when(traits: [ "IssueReporting" ]) @@ -120,7 +120,7 @@ let package = Package( name: "SwiftNavigationTests", dependencies: [ "SwiftNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .macro( @@ -158,7 +158,7 @@ let package = Package( ), .product( name: "IssueReporting", - package: "xctest-dynamic-overlay", + package: "swift-issue-reporting", condition: .when(traits: [ "IssueReporting" ]) @@ -169,7 +169,7 @@ let package = Package( name: "SwiftUINavigationTests", dependencies: [ "SwiftUINavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target( @@ -187,7 +187,7 @@ let package = Package( name: "UIKitNavigationTests", dependencies: [ "UIKitNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target( diff --git a/Package@swift-6.0.swift b/Package@swift-6.0.swift index 32deaabcc..4af053d03 100644 --- a/Package@swift-6.0.swift +++ b/Package@swift-6.0.swift @@ -33,10 +33,10 @@ let package = Package( dependencies: [ .package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.8.0"), .package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.2"), + .package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "2.0.0"), .package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.6.0"), .package(url: "https://github.com/pointfreeco/swift-perception", "1.3.4"..<"3.0.0"), .package(url: "https://github.com/pointfreeco/swift-sharing", from: "2.8.0"), - .package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.4.1"), .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"), .package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"605.0.0"), ], @@ -47,7 +47,7 @@ let package = Package( "SwiftNavigationMacros", .product(name: "CasePaths", package: "swift-case-paths"), .product(name: "CustomDump", package: "swift-custom-dump"), - .product(name: "IssueReporting", package: "xctest-dynamic-overlay"), + .product(name: "IssueReporting", package: "swift-issue-reporting"), .product(name: "Perception", package: "swift-perception"), .product(name: "PerceptionCore", package: "swift-perception"), ] @@ -56,7 +56,7 @@ let package = Package( name: "SwiftNavigationTests", dependencies: [ "SwiftNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .macro( @@ -83,14 +83,14 @@ let package = Package( dependencies: [ "SwiftNavigation", .product(name: "CasePaths", package: "swift-case-paths"), - .product(name: "IssueReporting", package: "xctest-dynamic-overlay"), + .product(name: "IssueReporting", package: "swift-issue-reporting"), ] ), .testTarget( name: "SwiftUINavigationTests", dependencies: [ "SwiftUINavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target( @@ -98,7 +98,7 @@ let package = Package( dependencies: [ "SwiftNavigation", "UIKitNavigationShim", - .product(name: "IssueReporting", package: "xctest-dynamic-overlay"), + .product(name: "IssueReporting", package: "swift-issue-reporting"), ] ), .target( @@ -108,7 +108,7 @@ let package = Package( name: "UIKitNavigationTests", dependencies: [ "UIKitNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target( diff --git a/Package@swift-6.1.swift b/Package@swift-6.1.swift index ba47d8588..b737ff708 100644 --- a/Package@swift-6.1.swift +++ b/Package@swift-6.1.swift @@ -60,10 +60,10 @@ let package = Package( dependencies: [ .package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.8.0"), .package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.2"), + .package(url: "https://github.com/pointfreeco/swift-issue-reporting", from: "2.0.0"), .package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.6.0"), .package(url: "https://github.com/pointfreeco/swift-perception", "1.3.4"..<"3.0.0"), .package(url: "https://github.com/pointfreeco/swift-sharing", from: "2.8.0"), - .package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.4.1"), .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"), .package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"605.0.0"), ], @@ -88,7 +88,7 @@ let package = Package( ), .product( name: "IssueReporting", - package: "xctest-dynamic-overlay", + package: "swift-issue-reporting", condition: .when(traits: [ "IssueReporting" ]) @@ -120,7 +120,7 @@ let package = Package( name: "SwiftNavigationTests", dependencies: [ "SwiftNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .macro( @@ -158,7 +158,7 @@ let package = Package( ), .product( name: "IssueReporting", - package: "xctest-dynamic-overlay", + package: "swift-issue-reporting", condition: .when(traits: [ "IssueReporting" ]) @@ -169,7 +169,7 @@ let package = Package( name: "SwiftUINavigationTests", dependencies: [ "SwiftUINavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target( @@ -186,7 +186,7 @@ let package = Package( name: "UIKitNavigationTests", dependencies: [ "UIKitNavigation", - .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), + .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), ] ), .target(