Skip to content

Commit 91b11ce

Browse files
committed
Use the latest version of Xcode 12 available
Update the CHANGELOG
1 parent 8f63489 commit 91b11ce

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/macos-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
LANG: en_US.UTF-8
1313

1414
steps:
15+
- uses: maxim-lobanov/[email protected]
16+
with:
17+
xcode-version: 12.0
1518
- uses: actions/checkout@v2
1619
- name: Create Test Result Directory
1720
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,16 @@ All notable changes to this project will be documented in this file. Changes not
1818
1919
# [Unreleased]
2020

21+
## Removed
22+
23+
- Support for the iOS 8 deployment target. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
24+
2125
## Added
2226

2327
- Add the `trailing_whitespace` rule in Swiftlint and autocorrect all the source files. ([#421](https://github.com/httpswift/swifter/pull/421)) by [@Vkt0r](https://github.com/Vkt0r)
2428
- Update the project for Xcode 11.1. ([#438](https://github.com/httpswift/swifter/pull/438)) by [@Vkt0r](https://github.com/Vkt0r)
2529
- Add optional 'Content-Type' to Data HttpResponse. ([#450](https://github.com/httpswift/swifter/pull/450)) by [@SoftwareEngineerChris](https://github.com/SoftwareEngineerChris)
30+
- Support Xcode 12 and Swift 5+. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
2631

2732
## Changed
2833

XCode/Tests/SwifterTestsHttpParser.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class SwifterTestsHttpParser: XCTestCase {
5050
}
5151
}
5252

53-
// swiftlint:disable function_body_length cyclomatic_complexity
53+
// swiftlint:disable function_body_length
5454
func testParser() {
5555
let parser = HttpParser()
5656

XCode/Tests/SwifterTestsWebSocketSession.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class SwifterTestsWebSocketSession: XCTestCase {
2929
}
3030
}
3131

32-
// swiftlint:disable function_body_length cyclomatic_complexity
32+
// swiftlint:disable function_body_length
3333
func testParser() {
3434

3535
do {

0 commit comments

Comments
 (0)