From 043f86d146f52da62c47a3e15afb51b6a41a64e7 Mon Sep 17 00:00:00 2001 From: Bartosz Dolewski <109529565+bdolewski-intellias@users.noreply.github.com> Date: Wed, 15 Nov 2023 21:57:00 +0100 Subject: [PATCH] Fix `swift-case-paths` being pinned to 1.1.0 the wrong way (#2577) --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index f6e84ba90b..9b3a66b831 100644 --- a/Package.swift +++ b/Package.swift @@ -21,7 +21,7 @@ let package = Package( .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), .package(url: "https://github.com/google/swift-benchmark", from: "0.1.0"), .package(url: "https://github.com/pointfreeco/combine-schedulers", from: "1.0.0"), - .package(url: "https://github.com/pointfreeco/swift-case-paths", branch: "1.1.0"), + .package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.1.0"), .package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.1.0"), .package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.0.0"), .package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.0.0"),