From cc26d06125dbc913c6d9e8a905a5db0b994509e0 Mon Sep 17 00:00:00 2001 From: Brandon Williams <135203+mbrandonw@users.noreply.github.com> Date: Wed, 24 Jul 2024 14:43:58 -0400 Subject: [PATCH] Point Issue Reporting to xctest-dynamic-overlay repo (#251) * Update XCTestDyanmicOverlay package name. * wip --- Package.resolved | 26 +++++++++++++------------- Package.swift | 16 ++++++++-------- Package@swift-6.0.swift | 18 +++++++++--------- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Package.resolved b/Package.resolved index 11ff4202..1e6cdaa7 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/combine-schedulers", "state" : { - "revision" : "487a4d151e795a5e076a7e7aedcd13c2ebff6c31", - "version" : "1.0.1" + "revision" : "9fa31f4403da54855f1e2aeaeff478f4f0e40b13", + "version" : "1.0.2" } }, { @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-clocks", "state" : { - "revision" : "eb64eacfed55635a771e3410f9c91de46cf5c6a0", - "version" : "1.0.3" + "revision" : "3581e280bf0d90c3fb9236fb23e75a5d8c46b533", + "version" : "1.0.4" } }, { @@ -45,15 +45,6 @@ "version" : "1.0.0" } }, - { - "identity" : "swift-issue-reporting", - "kind" : "remoteSourceControl", - "location" : "https://github.com/pointfreeco/swift-issue-reporting", - "state" : { - "revision" : "926f43898706eaa127db79ac42138e1ad7e85a3f", - "version" : "1.2.0" - } - }, { "identity" : "swift-macro-testing", "kind" : "remoteSourceControl", @@ -80,6 +71,15 @@ "revision" : "4c6cc0a3b9e8f14b3ae2307c5ccae4de6167ac2c", "version" : "600.0.0-prerelease-2024-06-12" } + }, + { + "identity" : "xctest-dynamic-overlay", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/xctest-dynamic-overlay", + "state" : { + "revision" : "357ca1e5dd31f613a1d43320870ebc219386a495", + "version" : "1.2.2" + } } ], "version" : 2 diff --git a/Package.swift b/Package.swift index 225513cf..91cb1792 100644 --- a/Package.swift +++ b/Package.swift @@ -22,17 +22,17 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.1"), - .package(url: "https://github.com/pointfreeco/swift-clocks", from: "1.0.3"), + .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.2"), + .package(url: "https://github.com/pointfreeco/swift-clocks", from: "1.0.4"), .package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"), - .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"), .package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease"), ], targets: [ .target( name: "DependenciesTestObserver", dependencies: [ - .product(name: "IssueReporting", package: "swift-issue-reporting") + .product(name: "IssueReporting", package: "xctest-dynamic-overlay") ] ), .target( @@ -41,8 +41,8 @@ let package = Package( .product(name: "Clocks", package: "swift-clocks"), .product(name: "CombineSchedulers", package: "combine-schedulers"), .product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"), - .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( @@ -50,14 +50,14 @@ let package = Package( dependencies: [ "Dependencies", "DependenciesMacros", - .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), + .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), ] ), .target( name: "DependenciesMacros", dependencies: [ "DependenciesMacrosPlugin", - .product(name: "IssueReporting", package: "swift-issue-reporting"), + .product(name: "IssueReporting", package: "xctest-dynamic-overlay"), ] ), .macro( diff --git a/Package@swift-6.0.swift b/Package@swift-6.0.swift index 13ea7e52..89b02be4 100644 --- a/Package@swift-6.0.swift +++ b/Package@swift-6.0.swift @@ -22,17 +22,17 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.1"), - .package(url: "https://github.com/pointfreeco/swift-clocks", from: "1.0.3"), + .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.2"), + .package(url: "https://github.com/pointfreeco/swift-clocks", from: "1.0.4"), .package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"), - .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"), .package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease"), ], targets: [ .target( name: "DependenciesTestObserver", dependencies: [ - .product(name: "IssueReporting", package: "swift-issue-reporting"), + .product(name: "IssueReporting", package: "xctest-dynamic-overlay"), ] ), .target( @@ -41,8 +41,8 @@ let package = Package( .product(name: "Clocks", package: "swift-clocks"), .product(name: "CombineSchedulers", package: "combine-schedulers"), .product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"), - .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( @@ -50,15 +50,15 @@ let package = Package( dependencies: [ "Dependencies", "DependenciesMacros", - .product(name: "IssueReportingTestSupport", package: "swift-issue-reporting"), + .product(name: "IssueReportingTestSupport", package: "xctest-dynamic-overlay"), ] ), .target( name: "DependenciesMacros", dependencies: [ "DependenciesMacrosPlugin", - .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"), ] ), .macro(