Skip to content

Commit

Permalink
Merge pull request #286 from allevato/prep-5.6-release
Browse files Browse the repository at this point in the history
Update dependencies and version number for the 0.50600.0 release.
  • Loading branch information
allevato committed Mar 18, 2022
2 parents f46f530 + 366b25d commit c062580
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Expand Up @@ -156,9 +156,9 @@ let package = Package(
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
// Building standalone.
package.dependencies += [
.package(url: "https://github.com/apple/swift-argument-parser.git", .branch("main")),
.package(url: "https://github.com/apple/swift-syntax", .branch("main")),
.package(url: "https://github.com/apple/swift-tools-support-core.git", .branch("main")),
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.1.1")),
.package(url: "https://github.com/apple/swift-syntax", .upToNextMinor(from: "0.50600.1")),
.package(url: "https://github.com/apple/swift-tools-support-core.git", .upToNextMinor(from: "0.2.5")),
]
} else {
package.dependencies += [
Expand Down
2 changes: 1 addition & 1 deletion Sources/swift-format/VersionOptions.swift
Expand Up @@ -20,7 +20,7 @@ struct VersionOptions: ParsableArguments {
func validate() throws {
if version {
// TODO: Automate updates to this somehow.
print("0.50500.0")
print("0.50600.0")
throw ExitCode.success
}
}
Expand Down

0 comments on commit c062580

Please sign in to comment.