diff --git a/Package.swift b/Package.swift index 97070283..62b8cdbf 100644 --- a/Package.swift +++ b/Package.swift @@ -183,7 +183,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil { ), .package( url: "https://github.com/apple/swift-syntax", - .upToNextMinor(from: "0.50700.0") + .upToNextMinor(from: "0.50700.1") ), .package( url: "https://github.com/apple/swift-tools-support-core.git", diff --git a/Sources/swift-format/VersionOptions.swift b/Sources/swift-format/VersionOptions.swift index 93f6e970..10b13271 100644 --- a/Sources/swift-format/VersionOptions.swift +++ b/Sources/swift-format/VersionOptions.swift @@ -20,7 +20,7 @@ struct VersionOptions: ParsableArguments { func validate() throws { if version { // TODO: Automate updates to this somehow. - print("0.50700.0") + print("0.50700.1") throw ExitCode.success } }