Skip to content

Commit 5f18422

Browse files
authored
Merge pull request #413 from allevato/point-one
[5.7] Require at least swift-syntax 0.50700.1.
2 parents 3dd9b51 + f52ddcb commit 5f18422

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
183183
),
184184
.package(
185185
url: "https://github.com/apple/swift-syntax",
186-
.upToNextMinor(from: "0.50700.0")
186+
.upToNextMinor(from: "0.50700.1")
187187
),
188188
.package(
189189
url: "https://github.com/apple/swift-tools-support-core.git",

Sources/swift-format/VersionOptions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct VersionOptions: ParsableArguments {
2020
func validate() throws {
2121
if version {
2222
// TODO: Automate updates to this somehow.
23-
print("0.50700.0")
23+
print("0.50700.1")
2424
throw ExitCode.success
2525
}
2626
}

0 commit comments

Comments
 (0)