Skip to content

Commit 13e93d4

Browse files
authored
Drop support for Swift 5.2 and 5.3 (swift-server#581)
As outlined in a [Swift forums post in November ’21](https://forums.swift.org/t/swiftnio-swift-version-support/53232), SwiftNIO will only support the latest non-patch Swift release and the 2 immediately prior non-patch versions. - drop support for Swift 5.2 and 5.3. - update CI for Swift 5.4 to run on bionic instead of focal to ensure that we still test bionic.
1 parent 9d8cd95 commit 13e93d4

8 files changed

+12
-48
lines changed

.swiftformat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# file options
22

3-
--swiftversion 5.2
3+
--swiftversion 5.4
44
--exclude .build
55

66
# format options

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ A good AsyncHTTPClient patch is:
5757
3. Documented, adding API documentation as needed to cover new functions and properties.
5858
4. Accompanied by a great commit message, using our commit message template.
5959

60-
*Note* as of version 1.5.0 AsyncHTTPClient requires Swift 5.2. Earlier versions support as far back as Swift 5.0.
60+
*Note* as of version 1.10.0 AsyncHTTPClient requires Swift 5.4. Earlier versions support as far back as Swift 5.0.
6161

6262
### Commit Message Template
6363

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.4
22
//===----------------------------------------------------------------------===//
33
//
44
// This source file is part of the AsyncHTTPClient open source project

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG swift_version=5.2
1+
ARG swift_version=5.4
22
ARG ubuntu_version=bionic
33
ARG base_image=swift:$swift_version-$ubuntu_version
44
FROM $base_image

docker/docker-compose.1604.52.yaml

-18
This file was deleted.

docker/docker-compose.1804.53.yaml docker/docker-compose.1804.54.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ version: "3"
33
services:
44

55
runtime-setup:
6-
image: async-http-client:18.04-5.3
6+
image: async-http-client:18.04-5.4
77
build:
88
args:
99
ubuntu_version: "bionic"
10-
swift_version: "5.3"
10+
swift_version: "5.4"
1111

1212
test:
13-
image: async-http-client:18.04-5.3
13+
image: async-http-client:18.04-5.4
1414
environment: []
1515
#- SANITIZER_ARG=--sanitize=thread
1616

1717
shell:
18-
image: async-http-client:18.04-5.3
18+
image: async-http-client:18.04-5.4

docker/docker-compose.2004.54.yaml

-18
This file was deleted.

scripts/check_no_api_breakages.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##
44
## This source file is part of the AsyncHTTPClient open source project
55
##
6-
## Copyright (c) 2018-2019 Apple Inc. and the AsyncHTTPClient project authors
6+
## Copyright (c) 2018-2022 Apple Inc. and the AsyncHTTPClient project authors
77
## Licensed under Apache License v2.0
88
##
99
## See LICENSE.txt for license information
@@ -32,12 +32,12 @@ set -eu
3232
function usage() {
3333
echo >&2 "Usage: $0 REPO-GITHUB-URL NEW-VERSION OLD-VERSIONS..."
3434
echo >&2
35-
echo >&2 "This script requires a Swift 5.2+ toolchain."
35+
echo >&2 "This script requires a Swift 5.6+ toolchain."
3636
echo >&2
3737
echo >&2 "Examples:"
3838
echo >&2
39-
echo >&2 "Check between main and tag 2.1.1 of swift-nio:"
40-
echo >&2 " $0 https://github.com/apple/swift-nio main 2.1.1"
39+
echo >&2 "Check between main and tag 1.9.0 of async-http-client:"
40+
echo >&2 " $0 https://github.com/swift-server/async-http-client main 1.9.0"
4141
echo >&2
4242
echo >&2 "Check between HEAD and commit 64cf63d7 using the provided toolchain:"
4343
echo >&2 " xcrun --toolchain org.swift.5120190702a $0 ../some-local-repo HEAD 64cf63d7"

0 commit comments

Comments
 (0)