Skip to content

Commit 275502f

Browse files
Updated swift-nio to 2.18.0. (#261)
Motivation: Due to using new ByteBuffer initializers from https://github.com/apple/swift-nio/releases/tag/2.18.0 in tests (specifically, `ByteBuffer(string: ...)`), the project will no longer compile if an older version of swift-nio is checked out. Modifications: Updated swift-nio from 2.16.0 to 2.18.0. Result: SPM should now grab the latest version of swift-nio if this version of async-http-client is used.
1 parent 606ab0e commit 275502f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let package = Package(
2121
.library(name: "AsyncHTTPClient", targets: ["AsyncHTTPClient"]),
2222
],
2323
dependencies: [
24-
.package(url: "https://github.com/apple/swift-nio.git", from: "2.16.0"),
24+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.18.0"),
2525
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.7.0"),
2626
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.3.0"),
2727
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.5.1"),

0 commit comments

Comments
 (0)