Skip to content

Commit c062580

Browse files
authored
Merge pull request #286 from allevato/prep-5.6-release
Update dependencies and version number for the 0.50600.0 release.
2 parents f46f530 + 366b25d commit c062580

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ let package = Package(
156156
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
157157
// Building standalone.
158158
package.dependencies += [
159-
.package(url: "https://github.com/apple/swift-argument-parser.git", .branch("main")),
160-
.package(url: "https://github.com/apple/swift-syntax", .branch("main")),
161-
.package(url: "https://github.com/apple/swift-tools-support-core.git", .branch("main")),
159+
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.1.1")),
160+
.package(url: "https://github.com/apple/swift-syntax", .upToNextMinor(from: "0.50600.1")),
161+
.package(url: "https://github.com/apple/swift-tools-support-core.git", .upToNextMinor(from: "0.2.5")),
162162
]
163163
} else {
164164
package.dependencies += [

Sources/swift-format/VersionOptions.swift

+1-1
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.50500.0")
23+
print("0.50600.0")
2424
throw ExitCode.success
2525
}
2626
}

0 commit comments

Comments
 (0)