Переглянути джерело

Use the latest version of Xcode 12 available

Update the CHANGELOG
Victor Sigler 5 роки тому
батько
коміт
91b11cee00

+ 3 - 0
.github/workflows/macos-tests.yml

@@ -12,6 +12,9 @@ jobs:
       LANG: en_US.UTF-8
   
     steps:
+      - uses: maxim-lobanov/setup-xcode@v1.1
+        with:
+          xcode-version: 12.0
       - uses: actions/checkout@v2
       - name: Create Test Result Directory
         run: |

+ 5 - 0
CHANGELOG.md

@@ -18,11 +18,16 @@ All notable changes to this project will be documented in this file. Changes not
 
 # [Unreleased]
 
+## Removed
+
+- Support for the iOS 8 deployment target. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
+
 ## Added
 
 - 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)
 - Update the project for Xcode 11.1. ([#438](https://github.com/httpswift/swifter/pull/438)) by [@Vkt0r](https://github.com/Vkt0r)
 - Add optional 'Content-Type' to Data HttpResponse. ([#450](https://github.com/httpswift/swifter/pull/450)) by [@SoftwareEngineerChris](https://github.com/SoftwareEngineerChris)
+- Support Xcode 12 and Swift 5+. ([#462](https://github.com/httpswift/swifter/pull/462)) by [@Vkt0r](https://github.com/Vkt0r)
 
 ## Changed
 

+ 1 - 1
XCode/Tests/SwifterTestsHttpParser.swift

@@ -50,7 +50,7 @@ class SwifterTestsHttpParser: XCTestCase {
         }
     }
 
-    // swiftlint:disable function_body_length cyclomatic_complexity
+    // swiftlint:disable function_body_length
     func testParser() {
         let parser = HttpParser()
 

+ 1 - 1
XCode/Tests/SwifterTestsWebSocketSession.swift

@@ -29,7 +29,7 @@ class SwifterTestsWebSocketSession: XCTestCase {
         }
     }
 
-    // swiftlint:disable function_body_length cyclomatic_complexity
+    // swiftlint:disable function_body_length
     func testParser() {
 
         do {