File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ let package = Package(
139
139
if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
140
140
// Building standalone.
141
141
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 " , . upToNextMinor ( from : " 0.50400.0 " ) ) ,
143
+ . package ( url: " https://github.com/apple/swift-argument-parser.git " , . upToNextMinor ( from : " 0.4.3 " ) ) ,
144
144
]
145
145
} else {
146
146
package . dependencies += [
Original file line number Diff line number Diff line change @@ -26,15 +26,16 @@ is also expressed in the `SwiftSyntax` dependency in
26
26
| Xcode Release | Swift Version | ` swift-format ` Branch |
27
27
| :-------------:| :---------------------------------------:| :----------------------|
28
28
| – | Swift at ` main ` | ` main ` |
29
+ | Xcode 12.5 | Swift 5.4 | ` swift-5.4-branch ` |
29
30
| Xcode 12.0 | Swift 5.3 | ` swift-5.3-branch ` |
30
31
| Xcode 11.4 | Swift 5.2 | ` swift-5.2-branch ` |
31
32
| Xcode 11.0 | Swift 5.1 | ` swift-5.1-branch ` |
32
33
33
- For example, if you are using Xcode 12.0 (Swift 5.3 ), you can check out and
34
+ For example, if you are using Xcode 12.5 (Swift 5.4 ), you can check out and
34
35
build ` swift-format ` using the following commands:
35
36
36
37
```
37
- git clone -b swift-5.3 -branch https://github.com/apple/swift-format.git
38
+ git clone -b swift-5.4 -branch https://github.com/apple/swift-format.git
38
39
cd swift-format
39
40
swift build
40
41
```
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ struct VersionOptions: ParsableArguments {
20
20
func validate( ) throws {
21
21
if version {
22
22
// TODO: Automate updates to this somehow.
23
- print ( " 0.50200.1 " )
23
+ print ( " 0.50400.0 " )
24
24
throw ExitCode . success
25
25
}
26
26
}
You can’t perform that action at this time.
0 commit comments