diff --git a/Cargo.toml b/Cargo.toml index d7dbc68a..101524c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,5 +12,5 @@ members = [ resolver = "2" [workspace.dependencies] -web-transport-proto = { path = "web-transport-proto", version = "0.5" } +web-transport-proto = { path = "web-transport-proto", version = "0.6" } web-transport-trait = { path = "web-transport-trait", version = "0.3" } diff --git a/web-transport-noq/CHANGELOG.md b/web-transport-noq/CHANGELOG.md index 41c5bfa5..6435cf01 100644 --- a/web-transport-noq/CHANGELOG.md +++ b/web-transport-noq/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## [0.0.2](https://github.com/moq-dev/web-transport/compare/web-transport-noq-v0.0.1...web-transport-noq-v0.0.2) - 2026-03-11 + +### Other + +- Fix typos and bump to v0.0.2 ([#188](https://github.com/moq-dev/web-transport/pull/188)) + ## [0.0.1] - 2026-03-11 - Initial fork from web-transport-quinn, targeting the Noq QUIC implementation. diff --git a/web-transport-proto/CHANGELOG.md b/web-transport-proto/CHANGELOG.md index 2b8822b9..f5b086bb 100644 --- a/web-transport-proto/CHANGELOG.md +++ b/web-transport-proto/CHANGELOG.md @@ -22,6 +22,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 + +### Added + +- *(web-transport-proto)* Add HTTP3 header to ConnectRequest ([#183](https://github.com/moq-dev/web-transport/pull/183)) + +### Other + +- Add #[non_exhaustive] to error enums and restore FrameTooLarge ([#172](https://github.com/moq-dev/web-transport/pull/172)) + ## [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 ### Other diff --git a/web-transport-proto/Cargo.toml b/web-transport-proto/Cargo.toml index 25dc49e9..d4ace4ef 100644 --- a/web-transport-proto/Cargo.toml +++ b/web-transport-proto/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.5.5" +version = "0.6.0" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-quiche/CHANGELOG.md b/web-transport-quiche/CHANGELOG.md index a62f678d..db016a4a 100644 --- a/web-transport-quiche/CHANGELOG.md +++ b/web-transport-quiche/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 + +### Other + +- updated the following local packages: web-transport-proto + ## [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 ### Other diff --git a/web-transport-quiche/Cargo.toml b/web-transport-quiche/Cargo.toml index 8582cd27..6be68e6f 100644 --- a/web-transport-quiche/Cargo.toml +++ b/web-transport-quiche/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.2.2" +version = "0.2.3" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-quinn/CHANGELOG.md b/web-transport-quinn/CHANGELOG.md index 716046bd..116d8f02 100644 --- a/web-transport-quinn/CHANGELOG.md +++ b/web-transport-quinn/CHANGELOG.md @@ -31,6 +31,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 + +### Added + +- *(web-transport-proto)* Add HTTP3 header to ConnectRequest ([#183](https://github.com/moq-dev/web-transport/pull/183)) + ## [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 ### Other diff --git a/web-transport-quinn/Cargo.toml b/web-transport-quinn/Cargo.toml index 06a79719..00396f9b 100644 --- a/web-transport-quinn/Cargo.toml +++ b/web-transport-quinn/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.11.7" +version = "0.11.8" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-trait/CHANGELOG.md b/web-transport-trait/CHANGELOG.md index d9044896..5e38ac58 100644 --- a/web-transport-trait/CHANGELOG.md +++ b/web-transport-trait/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.4](https://github.com/moq-dev/web-transport/compare/web-transport-trait-v0.3.3...web-transport-trait-v0.3.4) - 2026-03-11 + +### Other + +- Add web-transport-noq crate ([#187](https://github.com/moq-dev/web-transport/pull/187)) + ## [0.3.3](https://github.com/moq-dev/web-transport/compare/web-transport-trait-v0.3.2...web-transport-trait-v0.3.3) - 2026-02-13 ### Other diff --git a/web-transport-trait/Cargo.toml b/web-transport-trait/Cargo.toml index 6db6ee54..b5bf52f2 100644 --- a/web-transport-trait/Cargo.toml +++ b/web-transport-trait/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.3.3" +version = "0.3.4" edition = "2021" keywords = ["quic", "http3", "webtransport"] diff --git a/web-transport-ws/CHANGELOG.md b/web-transport-ws/CHANGELOG.md index 9977e49b..2197b91e 100644 --- a/web-transport-ws/CHANGELOG.md +++ b/web-transport-ws/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 + +### Other + +- updated the following local packages: web-transport-proto + ## [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 ### Other diff --git a/web-transport-ws/Cargo.toml b/web-transport-ws/Cargo.toml index 86b4345d..5a1a66d3 100644 --- a/web-transport-ws/Cargo.toml +++ b/web-transport-ws/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" keywords = ["quic", "http3", "webtransport", "websocket", "polyfill"] diff --git a/web-transport/CHANGELOG.md b/web-transport/CHANGELOG.md index 2a0b1a0e..42abc24b 100644 --- a/web-transport/CHANGELOG.md +++ b/web-transport/CHANGELOG.md @@ -27,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.4](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.3...web-transport-v0.10.4) - 2026-03-11 + +### Other + +- updated the following local packages: web-transport-quinn + ## [0.10.3](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.2...web-transport-v0.10.3) - 2026-03-10 ### Other diff --git a/web-transport/Cargo.toml b/web-transport/Cargo.toml index 4bedc317..6b47aa4a 100644 --- a/web-transport/Cargo.toml +++ b/web-transport/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/web-transport" license = "MIT OR Apache-2.0" -version = "0.10.3" +version = "0.10.4" edition = "2021" keywords = ["quic", "http3", "webtransport"] @@ -18,7 +18,7 @@ thiserror = "2" url = "2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -web-transport-quinn = { version = "0.11.7", path = "../web-transport-quinn" } +web-transport-quinn = { version = "0.11.8", path = "../web-transport-quinn" } [target.'cfg(target_arch = "wasm32")'.dependencies] web-transport-wasm = { version = "0.5.6", path = "../web-transport-wasm" }