Skip to content

Commit 2974a0c

Browse files
committed
Pin swift-5.5-branch to specific versions of dependencies.
For now, while Xcode 13.0 is in beta, we pin to a precise commit that we know is compatible with the released toolchain (beta 3, at the time of this writing). Tested by running `swift test` with Xcode 13.0b3; all tests build and pass.
1 parent e3a4b21 commit 2974a0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ let package = Package(
139139
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
140140
// Building standalone.
141141
package.dependencies += [
142-
.package(url: "https://github.com/apple/swift-syntax", .branch("main")),
143-
.package(url: "https://github.com/apple/swift-argument-parser.git", .branch("main")),
142+
.package(url: "https://github.com/apple/swift-syntax", .revision("9a8d3d8b9fb42bdd9cffc18219b5efb584b5b998")),
143+
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "0.4.3")),
144144
]
145145
} else {
146146
package.dependencies += [

0 commit comments

Comments
 (0)