Skip to content

Commit 32ba4a0

Browse files
authored
Merge pull request #17 from uhooi/feature/bump_swiftpm_to_5.6
Bump SwiftPM from 5.5 to 5.6
2 parents c496042 + 3dd40ed commit 32ba4a0

File tree

5 files changed

+23
-25
lines changed

5 files changed

+23
-25
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ on:
99
jobs:
1010
run-macos:
1111
name: ${{ matrix.subcommand }} with Xcode ${{ matrix.xcode }} on macOS
12-
runs-on: macos-11
12+
runs-on: macos-12
1313
strategy:
1414
matrix:
15-
xcode: ["13.0", "13.1", "13.2.1"]
15+
xcode: ["13.3.1", "13.4", "13.4.1"]
1616
subcommand: ["Build", "Test"]
1717
steps:
1818
- uses: actions/checkout@v3
@@ -32,7 +32,7 @@ jobs:
3232
container: swift:${{ matrix.swift }}
3333
strategy:
3434
matrix:
35-
swift: ["5.5.0", "5.5.1", "5.5.2", "5.5.3"]
35+
swift: ["5.6.0", "5.6.1", "5.6.2"]
3636
steps:
3737
- uses: actions/checkout@v3
3838
- name: Build and Test

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
types: [published]
66

77
env:
8-
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app
8+
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app
99

1010
jobs:
1111
build-release:
12-
runs-on: macos-11
12+
runs-on: macos-12
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Build for release

Package.resolved

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
{
2-
"object": {
3-
"pins": [
4-
{
5-
"package": "swift-argument-parser",
6-
"repositoryURL": "https://github.com/apple/swift-argument-parser",
7-
"state": {
8-
"branch": null,
9-
"revision": "d2930e8fcf9c33162b9fcc1d522bc975e2d4179b",
10-
"version": "1.0.1"
11-
}
2+
"pins" : [
3+
{
4+
"identity" : "swift-argument-parser",
5+
"kind" : "remoteSourceControl",
6+
"location" : "https://github.com/apple/swift-argument-parser",
7+
"state" : {
8+
"revision" : "d2930e8fcf9c33162b9fcc1d522bc975e2d4179b",
9+
"version" : "1.0.1"
1210
}
13-
]
14-
},
15-
"version": 1
11+
}
12+
],
13+
"version" : 2
1614
}

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.6
22

33
import PackageDescription
44

55
let package = Package(
66
name: "OutputUhooi",
77
platforms: [
8-
.macOS(.v11),
8+
.macOS(.v12),
99
],
1010
products: [
1111
.executable(name: "uhooi", targets: ["OutputUhooi"]),

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Uhooi speak the phrase.
1919

2020
## System requirements
2121

22-
- Swift: 5.0+
23-
- Xcode: 13.0+
24-
- macOS: 11.3+
22+
- Swift: 5.6+
23+
- Xcode: 13.3+
24+
- macOS: 12.0+
2525

2626
## Installation
2727

@@ -40,14 +40,14 @@ Example: `FooTools` folder.
4040

4141
2. In this folder, create a file called `Package.swift` , with the following contents:
4242
```swift
43-
// swift-tools-version:5.5
43+
// swift-tools-version:5.6
4444

4545
import PackageDescription
4646

4747
let package = Package(
4848
name: "FooTools",
4949
platforms: [
50-
.macOS(.v11),
50+
.macOS(.v12),
5151
],
5252
dependencies: [
5353
.package(url: "https://github.com/uhooi/swift-output-uhooi", exact: "0.2.0"),

0 commit comments

Comments
 (0)