Skip to content

Commit 38c38b4

Browse files
chore: release
1 parent 7aeec11 commit 38c38b4

11 files changed

Lines changed: 41 additions & 7 deletions

File tree

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.5" }
14+
web-transport-proto = { path = "web-transport-proto", version = "0.6" }
1515
web-transport-trait = { path = "web-transport-trait", version = "0.3" }

web-transport-proto/CHANGELOG.md

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

2323
## [Unreleased]
2424

25+
## [0.6.0](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.5.5...web-transport-proto-v0.6.0) - 2026-03-11
26+
27+
### Added
28+
29+
- *(web-transport-proto)* Add HTTP3 header to ConnectRequest ([#183](https://github.com/moq-dev/web-transport/pull/183))
30+
31+
### Other
32+
33+
- Add #[non_exhaustive] to error enums and restore FrameTooLarge ([#172](https://github.com/moq-dev/web-transport/pull/172))
34+
2535
## [0.5.5](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.5.4...web-transport-proto-v0.5.5) - 2026-03-10
2636

2737
### 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/moq-dev/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.5.5"
8+
version = "0.6.0"
99
edition = "2021"
1010

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

web-transport-quiche/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.3](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.2.2...web-transport-quiche-v0.2.3) - 2026-03-11
11+
12+
### Other
13+
14+
- updated the following local packages: web-transport-proto
15+
1016
## [0.2.2](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.2.1...web-transport-quiche-v0.2.2) - 2026-03-10
1117

1218
### Other

web-transport-quiche/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/moq-dev/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.2.2"
8+
version = "0.2.3"
99
edition = "2021"
1010

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

web-transport-quinn/CHANGELOG.md

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

3232
## [Unreleased]
3333

34+
## [0.11.8](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.7...web-transport-quinn-v0.11.8) - 2026-03-11
35+
36+
### Added
37+
38+
- *(web-transport-proto)* Add HTTP3 header to ConnectRequest ([#183](https://github.com/moq-dev/web-transport/pull/183))
39+
3440
## [0.11.7](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.6...web-transport-quinn-v0.11.7) - 2026-03-10
3541

3642
### 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/moq-dev/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.11.7"
8+
version = "0.11.8"
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.3.2](https://github.com/moq-dev/web-transport/compare/web-transport-ws-v0.3.1...web-transport-ws-v0.3.2) - 2026-03-11
11+
12+
### Other
13+
14+
- updated the following local packages: web-transport-proto
15+
1016
## [0.3.0](https://github.com/moq-dev/web-transport/compare/web-transport-ws-v0.2.5...web-transport-ws-v0.3.0) - 2026-03-10
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/moq-dev/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.3.1"
8+
version = "0.3.2"
99
edition = "2021"
1010

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

web-transport/CHANGELOG.md

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

2828
## [Unreleased]
2929

30+
## [0.10.4](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.3...web-transport-v0.10.4) - 2026-03-11
31+
32+
### Other
33+
34+
- updated the following local packages: web-transport-quinn
35+
3036
## [0.10.3](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.2...web-transport-v0.10.3) - 2026-03-10
3137

3238
### Other

0 commit comments

Comments
 (0)