Skip to content

Commit 74dba20

Browse files
committed
Deployment target 14.3
1 parent 1eecb38 commit 74dba20

File tree

4 files changed

+10
-18
lines changed

4 files changed

+10
-18
lines changed

.github/workflows/ci.yml

+3-15
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
xcode: ["15.0", "15.3"]
17+
xcode: ["14.3", "15.0", "15.3"]
1818
include:
1919
- xcode: "15.3"
2020
macos: macOS-14
2121
- xcode: "15.0"
2222
macos: macOS-14
23+
- xcode: "14.3"
24+
macos: macOS-13
2325
runs-on: ${{ matrix.macos }}
2426
env:
2527
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
@@ -40,17 +42,3 @@ jobs:
4042
- uses: actions/checkout@v2
4143
- name: Run Tests
4244
run: swift test
43-
44-
discover-typos:
45-
name: Discover Typos
46-
runs-on: macOS-13
47-
env:
48-
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
49-
steps:
50-
- uses: actions/checkout@v2
51-
- name: Discover typos
52-
run: |
53-
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin"
54-
python3 -m pip install --upgrade pip
55-
python3 -m pip install codespell
56-
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*"

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Get 2.x
22

3-
## Get 2.2.0
3+
## Get 2.2
44

55
*Apr 13, 2024*
66

7-
- Increase the minimum supported Xcode version to 15.0
7+
- Increase the minimum supported Xcode version to 14.3
88
- Fix warnings in unit tests
99

1010
## Get 2.1.6

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Get is a lean framework with a lot of flexibility and customization points. It m
8989

9090
| Get | Date | Swift | Xcode | Platforms |
9191
|------|--------------|-------|-------|------------------------------------------------------|
92-
| 2.2 | Apr 13, 2022 | 5.9 | 15.0 | iOS 13.0, watchOS 6.0, macOS 10.15, tvOS 13.0, Linux |
92+
| 2.2 | Apr 13, 2024 | 5.8 | 14.3 | iOS 13.0, watchOS 6.0, macOS 10.15, tvOS 13.0, Linux |
9393
| 2.0 | Jul 26, 2022 | 5.5 | 13.3 | iOS 13.0, watchOS 6.0, macOS 10.15, tvOS 13.0, Linux |
9494

9595
## License

Tests/GetTests/ClientSessionDelegateTests.swift

+4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ final class APIClientSessionDelegateTests: XCTestCase {
7878

7979
client.session.invalidateAndCancel()
8080

81+
#if swift(>=5.9)
8182
await fulfillment(of: [expectation], timeout: 2)
83+
#else
84+
wait(for: [expectation], timeout: 2)
85+
#endif
8286
}
8387

8488
// MARK: - Per-Task Delegate

0 commit comments

Comments
 (0)