Skip to content

Commit 194625b

Browse files
committed
Bump version to 1.20.0
1 parent c451d2c commit 194625b

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img src="https://img.shields.io/badge/platform-macOS%20%7C%20Ubuntu%20%7C%20Windows-lightgray" alt="Supports macOS, Ubuntu & Windows" />
88
</a>
99
<a href="https://swift.org">
10-
<img src="https://img.shields.io/badge/Swift-5.7-F05138?logo=swift&logoColor=white" alt="Swift 5.7" />
10+
<img src="https://img.shields.io/badge/Swift-5.7.1-F05138?logo=swift&logoColor=white" alt="Swift 5.7.1" />
1111
</a>
1212
<a href="https://github.com/swift-actions/setup-swift/releases/latest">
1313
<img src="https://img.shields.io/github/v/release/swift-actions/setup-swift?sort=semver" alt="Latest release" />
@@ -28,7 +28,7 @@ After the environment is configured you can run swift commands using the standar
2828
```yaml
2929
- uses: swift-actions/setup-swift@v1
3030
- name: Get swift version
31-
run: swift --version # Swift 5.7
31+
run: swift --version # Swift 5.7.1
3232
```
3333

3434
A specific Swift version can be set using the `swift-version` input:
@@ -68,7 +68,7 @@ For example, Swift is available as version `5.1` but using this as value for `sw
6868
In other words specifying...
6969
- `"5.1.0"` will resolve to version `5.1`
7070
- `"5.1"` will resolve to latest patch version (aka `5.1.1`)
71-
- `"5"` will resolve to latest minor and patch version (aka `5.7`)
71+
- `"5"` will resolve to latest minor and patch version (aka `5.7.1`)
7272

7373
### Caveats
7474

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
swift-version:
66
description: Swift version to configure
77
required: true
8-
default: '5.7'
8+
default: '5.7.1'
99
outputs:
1010
version:
1111
description: The full Swift version that was configured

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,7 @@ const semver = __importStar(__nccwpck_require__(1383));
540540
const core = __importStar(__nccwpck_require__(2186));
541541
const os_1 = __nccwpck_require__(1855);
542542
const VERSIONS_LIST = [
543+
["5.7.1", [os_1.OS.MacOS, os_1.OS.Ubuntu]],
543544
["5.7", [os_1.OS.MacOS, os_1.OS.Ubuntu]],
544545
["5.6.3", os_1.OS.all()],
545546
["5.6.2", os_1.OS.all()],

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-swift",
3-
"version": "1.19.0",
3+
"version": "1.20.0",
44
"description": "Set up GitHub Actions workflow with Swift support",
55
"private": true,
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)