Browse Source

Bump concurrency support to require Swift 5.6 compiler. (#3590)

Jon Shier 3 years ago
parent
commit
6bb3f6bd75
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/Concurrency.swift
  2. 1 1
      Tests/ConcurrencyTests.swift

+ 1 - 1
Source/Concurrency.swift

@@ -22,7 +22,7 @@
 //  THE SOFTWARE.
 //
 
-#if compiler(>=5.5.2) && canImport(_Concurrency)
+#if compiler(>=5.6.0) && canImport(_Concurrency)
 
 import Foundation
 

+ 1 - 1
Tests/ConcurrencyTests.swift

@@ -22,7 +22,7 @@
 //  THE SOFTWARE.
 //
 
-#if compiler(>=5.5.2) && canImport(_Concurrency)
+#if compiler(>=5.6.0) && canImport(_Concurrency)
 
 import Alamofire
 import XCTest