Skip to content

Commit 2481c94

Browse files
authored
Lock an exact swift-nio-ssl dependency version (#58)
### Motivation: The Cassandra client uses parts of Swift NIOSSL that aren't technically API, so to avoid breakages between minor/patch versions, we should depend on exactly the last qualified version of the dependency. ### Modifications: Updated the dependency version constraint type, and specified the latest released version. ### Result: No more breaks when Swift NIOSSL releases a new version.
1 parent 696ecc4 commit 2481c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ let package = Package(
101101
],
102102
dependencies: [
103103
.package(url: "https://github.com/apple/swift-nio", .upToNextMajor(from: "2.41.1")),
104-
.package(url: "https://github.com/apple/swift-nio-ssl", .upToNextMajor(from: "2.29.3")),
104+
.package(url: "https://github.com/apple/swift-nio-ssl", exact: "2.32.0"),
105105
.package(url: "https://github.com/apple/swift-atomics", from: "1.0.2"),
106106
.package(url: "https://github.com/apple/swift-log", .upToNextMajor(from: "1.0.0")),
107107
],

0 commit comments

Comments
 (0)