Skip to content

Commit 17b2d90

Browse files
chore: release
1 parent 5e7ffa9 commit 17b2d90

File tree

12 files changed

+53
-7
lines changed

12 files changed

+53
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ members = [
1111
resolver = "2"
1212

1313
[workspace.dependencies]
14-
web-transport-proto = { path = "web-transport-proto", version = "0.2.8" }
14+
web-transport-proto = { path = "web-transport-proto", version = "0.2.9" }
1515
web-transport-trait = { path = "web-transport-trait", version = "0.2" }

web-transport-proto/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
## [Unreleased]
2424

25+
## [0.2.9](https://github.com/kixelated/web-transport/compare/web-transport-proto-v0.2.8...web-transport-proto-v0.2.9) - 2025-11-14
26+
27+
### Other
28+
29+
- Initial web-transport-quiche support ([#118](https://github.com/kixelated/web-transport/pull/118))
30+
2531
## [0.2.8](https://github.com/kixelated/web-transport/compare/web-transport-proto-v0.2.7...web-transport-proto-v0.2.8) - 2025-10-17
2632

2733
### Other

web-transport-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/kixelated/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.2.8"
8+
version = "0.2.9"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport"]

web-transport-quiche/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.0.1](https://github.com/kixelated/web-transport/releases/tag/web-transport-quiche-v0.0.1) - 2025-11-14
11+
12+
### Other
13+
14+
- Fix a rare race when accepting a stream. ([#120](https://github.com/kixelated/web-transport/pull/120))
15+
- Initial web-transport-quiche support ([#118](https://github.com/kixelated/web-transport/pull/118))

web-transport-quinn/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131

3232
## [Unreleased]
3333

34+
## [0.9.1](https://github.com/kixelated/web-transport/compare/web-transport-quinn-v0.9.0...web-transport-quinn-v0.9.1) - 2025-11-14
35+
36+
### Other
37+
38+
- Fix a rare race when accepting a stream. ([#120](https://github.com/kixelated/web-transport/pull/120))
39+
- Initial web-transport-quiche support ([#118](https://github.com/kixelated/web-transport/pull/118))
40+
3441
## [0.9.0](https://github.com/kixelated/web-transport/compare/web-transport-quinn-v0.8.1...web-transport-quinn-v0.9.0) - 2025-10-17
3542

3643
### Other

web-transport-quinn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/kixelated/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.9.0"
8+
version = "0.9.1"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport"]

web-transport-trait/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1](https://github.com/kixelated/web-transport/compare/web-transport-trait-v0.2.0...web-transport-trait-v0.2.1) - 2025-11-14
11+
12+
### Other
13+
14+
- Initial web-transport-quiche support ([#118](https://github.com/kixelated/web-transport/pull/118))
15+
1016
## [0.2.0](https://github.com/kixelated/web-transport/compare/web-transport-trait-v0.1.1...web-transport-trait-v0.2.0) - 2025-10-17
1117

1218
### Other

web-transport-trait/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/kixelated/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.2.0"
8+
version = "0.2.1"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport"]

web-transport-ws/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/kixelated/web-transport/compare/web-transport-ws-v0.1.3...web-transport-ws-v0.1.4) - 2025-11-14
11+
12+
### Other
13+
14+
- Initial web-transport-quiche support ([#118](https://github.com/kixelated/web-transport/pull/118))
15+
1016
## [0.1.3](https://github.com/kixelated/web-transport/compare/web-transport-ws-v0.1.2...web-transport-ws-v0.1.3) - 2025-10-25
1117

1218
### Other

web-transport-ws/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/kixelated/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.1.3"
8+
version = "0.1.4"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport", "websocket", "polyfill"]

0 commit comments

Comments
 (0)