Skip to content

Commit d19293d

Browse files
chore: release
1 parent 89d76ec commit d19293d

10 files changed

Lines changed: 40 additions & 7 deletions

File tree

web-transport-proto/CHANGELOG.md

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

2323
## [Unreleased]
2424

25+
## [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-07
26+
27+
### Other
28+
29+
- Restore CapsuleError::UnknownType for semver compatibility
30+
- Fix close capsules ([#179](https://github.com/moq-dev/web-transport/pull/179))
31+
2532
## [0.5.4](https://github.com/moq-dev/web-transport/compare/web-transport-proto-v0.5.3...web-transport-proto-v0.5.4) - 2026-02-20
2633

2734
### 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.4"
8+
version = "0.5.5"
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.2](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.2.1...web-transport-quiche-v0.2.2) - 2026-03-07
11+
12+
### Other
13+
14+
- Update README.md
15+
1016
## [0.2.0](https://github.com/moq-dev/web-transport/compare/web-transport-quiche-v0.1.0...web-transport-quiche-v0.2.0) - 2026-02-11
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.1"
8+
version = "0.2.2"
99
edition = "2021"
1010

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

web-transport-quinn/CHANGELOG.md

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

3232
## [Unreleased]
3333

34+
## [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-07
35+
36+
### Other
37+
38+
- Fix error propagation when connection is closed ([#181](https://github.com/moq-dev/web-transport/pull/181))
39+
- Expose connect::ConnectError (required to access http error for rejected session) ([#178](https://github.com/moq-dev/web-transport/pull/178))
40+
- Fix close capsules ([#179](https://github.com/moq-dev/web-transport/pull/179))
41+
3442
## [0.11.6](https://github.com/moq-dev/web-transport/compare/web-transport-quinn-v0.11.5...web-transport-quinn-v0.11.6) - 2026-02-20
3543

3644
### 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.6"
8+
version = "0.11.7"
99
edition = "2021"
1010

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

web-transport-wasm/CHANGELOG.md

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

2222
## [Unreleased]
2323

24+
## [0.5.6](https://github.com/moq-dev/web-transport/compare/web-transport-wasm-v0.5.5...web-transport-wasm-v0.5.6) - 2026-03-07
25+
26+
### Other
27+
28+
- Use WebTransportHash type instead of manual object construction ([#180](https://github.com/moq-dev/web-transport/pull/180))
29+
2430
## [0.5.5](https://github.com/moq-dev/web-transport/compare/web-transport-wasm-v0.5.4...web-transport-wasm-v0.5.5) - 2026-01-23
2531

2632
### Other

web-transport-wasm/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.5.6"
99
edition = "2021"
1010

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

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.3](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.2...web-transport-v0.10.3) - 2026-03-07
31+
32+
### Other
33+
34+
- release ([#173](https://github.com/moq-dev/web-transport/pull/173))
35+
3036
## [0.10.2](https://github.com/moq-dev/web-transport/compare/web-transport-v0.10.1...web-transport-v0.10.2) - 2026-02-20
3137

3238
### Fixed

web-transport/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.10.2"
8+
version = "0.10.3"
99
edition = "2021"
1010

1111
keywords = ["quic", "http3", "webtransport"]
@@ -18,7 +18,7 @@ thiserror = "2"
1818
url = "2"
1919

2020
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
21-
web-transport-quinn = { version = "0.11.6", path = "../web-transport-quinn" }
21+
web-transport-quinn = { version = "0.11.7", path = "../web-transport-quinn" }
2222

2323
[target.'cfg(target_arch = "wasm32")'.dependencies]
24-
web-transport-wasm = { version = "0.5.5", path = "../web-transport-wasm" }
24+
web-transport-wasm = { version = "0.5.6", path = "../web-transport-wasm" }

0 commit comments

Comments
 (0)