Skip to content

Commit e36bf2c

Browse files
chore: release (#185)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 91759f5 commit e36bf2c

14 files changed

Lines changed: 54 additions & 8 deletions

File tree

Cargo.toml

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

1414
[workspace.dependencies]
15-
web-transport-proto = { path = "web-transport-proto", version = "0.5" }
15+
web-transport-proto = { path = "web-transport-proto", version = "0.6" }
1616
web-transport-trait = { path = "web-transport-trait", version = "0.3" }

web-transport-noq/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
22

3+
## [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
4+
5+
### Other
6+
7+
- Fix typos and bump to v0.0.2 ([#188](https://github.com/moq-dev/web-transport/pull/188))
8+
39
## [0.0.1] - 2026-03-11
410
- Initial fork from web-transport-quinn, targeting the Noq QUIC implementation.

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-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.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
11+
12+
### Other
13+
14+
- Add web-transport-noq crate ([#187](https://github.com/moq-dev/web-transport/pull/187))
15+
1016
## [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
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/moq-dev/web-transport"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.3.3"
8+
version = "0.3.4"
99
edition = "2021"
1010

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

0 commit comments

Comments
 (0)