Skip to content

Commit 56715c2

Browse files
authored
Swift 5.7 (#27)
* built with Swift 5.7 * bump swift-log
1 parent 313bb9d commit 56715c2

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/workflows/ci.yaml

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,26 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- uses: norio-nomura/action-swiftlint@3.2.1
1111
macOS-test:
1212
strategy:
1313
matrix:
1414
swift-version:
15-
- "5.5"
15+
- "5.7"
1616
runs-on: macos-latest
1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: fwal/setup-swift@v1
18+
- uses: actions/checkout@v3
19+
- uses: swift-actions/setup-swift@v1
2020
with:
2121
swift-version: ${{ matrix.swift-version }}
2222
- run: swift test
2323
linux-test:
2424
strategy:
2525
matrix:
2626
swift-version:
27+
- "5.7"
28+
- "5.6"
2729
- "5.5"
2830
- "5.4"
2931
- "5.3"
@@ -33,10 +35,10 @@ jobs:
3335
runs-on: ubuntu-latest
3436
container: swift:${{ matrix.swift-version }}
3537
steps:
36-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3739
- run: swift test
3840
iOS-build:
3941
runs-on: macos-latest
4042
steps:
41-
- uses: actions/checkout@v2
43+
- uses: actions/checkout@v3
4244
- run: xcodebuild -scheme argtree -destination 'platform=iOS Simulator,name=iPhone 13'

Package.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"repositoryURL": "https://github.com/apple/swift-log.git",
77
"state": {
88
"branch": null,
9-
"revision": "5d66f7ba25daf4f94100e7022febf3c75e37a6c7",
10-
"version": "1.4.2"
9+
"revision": "6fe203dc33195667ce1759bf0182975e4653ba1c",
10+
"version": "1.4.4"
1111
}
1212
}
1313
]

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.2"),
15+
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.4"),
1616
],
1717
targets: [
1818
.target(

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# argtree
22

3-
[![Swift](https://img.shields.io/badge/Swift-5.5-blue?logo=swift&logoColor=white)](https://swift.org)
3+
[![Swift](https://img.shields.io/badge/Swift-5.7-blue?logo=swift&logoColor=white)](https://swift.org)
44
![Platform](https://img.shields.io/badge/platform-x86__64--apple|x86__64--linux-lightgrey.svg)
55
![Build](https://github.com/dastrobu/argtree/actions/workflows/ci.yaml/badge.svg)
66

@@ -61,7 +61,7 @@ complicated parse trees for big command line programs.
6161
```swift
6262
let package = Package(
6363
dependencies: [
64-
.package(url: "https://github.com/dastrobu/argtree.git", from: "1.5.3"),
64+
.package(url: "https://github.com/dastrobu/argtree.git", from: "1.5.4"),
6565
]
6666
)
6767
```

0 commit comments

Comments
 (0)