Skip to content

Commit 19cd945

Browse files
committed
Bump to swift-nio-quic 0.2.0
Motivation: swift-nio-quic tagged a new release with some breaking changes Modifications: - Adopt new API Result: Builds
1 parent 240d833 commit 19cd945

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ let package = Package(
3535
.package(url: "https://github.com/apple/swift-certificates.git", from: "1.19.3"),
3636
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.22.0"),
3737
.package(url: "https://github.com/apple/swift-nio-quic-helpers.git", .upToNextMinor(from: "0.1.0")),
38-
.package(url: "https://github.com/apple/swift-nio-quic.git", .upToNextMinor(from: "0.1.0")),
38+
.package(url: "https://github.com/apple/swift-nio-quic.git", .upToNextMinor(from: "0.2.0")),
3939
],
4040
targets: [
4141
.target(

Tests/H3IntegrationTests/QUICConnectionCreator.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ struct QUICConnectionCreator: HTTP3ConnectionCreator {
4040
}
4141
},
4242
inboundStreamInitializer: self.inboundStreamInitializer
43-
)
43+
).map { connectionChannel, _ in
44+
connectionChannel
45+
}
4446
}
4547
}

0 commit comments

Comments
 (0)