Skip to content

Commit 6b00d29

Browse files
chore: release (#101)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8f72621 commit 6b00d29

File tree

13 files changed

+58
-9
lines changed

13 files changed

+58
-9
lines changed

Cargo.toml

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

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

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.2.8](https://github.com/kixelated/web-transport/compare/web-transport-proto-v0.2.7...web-transport-proto-v0.2.8) - 2025-10-17
26+
27+
### Other
28+
29+
- Make traits compatible with WASM ([#107](https://github.com/kixelated/web-transport/pull/107))
30+
- Check all feature combinations ([#102](https://github.com/kixelated/web-transport/pull/102))
31+
2532
## [0.2.6](https://github.com/kixelated/web-transport/compare/web-transport-proto-v0.2.5...web-transport-proto-v0.2.6) - 2025-05-15
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/kixelated/web-transport"
66
license = "MIT OR Apache-2.0"
77

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

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

web-transport-quinn/CHANGELOG.md

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

3232
## [Unreleased]
3333

34+
## [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
35+
36+
### Other
37+
38+
- Change web-transport-trait::Session::closed() to return a Result ([#110](https://github.com/kixelated/web-transport/pull/110))
39+
- Use workspace dependencies. ([#108](https://github.com/kixelated/web-transport/pull/108))
40+
- Don't force users to unsafe. ([#109](https://github.com/kixelated/web-transport/pull/109))
41+
- Add impl Clone for Client ([#104](https://github.com/kixelated/web-transport/pull/104))
42+
- Check all feature combinations ([#102](https://github.com/kixelated/web-transport/pull/102))
43+
- Add quic_id method to SendStream / RecvStream ([#93](https://github.com/kixelated/web-transport/pull/93))
44+
3445
## [0.7.3](https://github.com/kixelated/web-transport/compare/web-transport-quinn-v0.7.2...web-transport-quinn-v0.7.3) - 2025-07-20
3546

3647
### 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.8.1"
8+
version = "0.9.0"
99
edition = "2021"
1010

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

web-transport-trait/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Other
13+
14+
- Change web-transport-trait::Session::closed() to return a Result ([#110](https://github.com/kixelated/web-transport/pull/110))
15+
- Make traits compatible with WASM ([#107](https://github.com/kixelated/web-transport/pull/107))
16+
- Fix default read_chunk() implementation ([#105](https://github.com/kixelated/web-transport/pull/105))
17+
1018
## [0.1.1](https://github.com/kixelated/web-transport/compare/web-transport-trait-v0.1.0...web-transport-trait-v0.1.1) - 2025-09-03
1119

1220
### 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.1.1"
8+
version = "0.2.0"
99
edition = "2021"
1010

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

web-transport-wasm/CHANGELOG.md

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

2222
## [Unreleased]
2323

24+
## [0.5.3](https://github.com/kixelated/web-transport/compare/web-transport-wasm-v0.5.2...web-transport-wasm-v0.5.3) - 2025-10-17
25+
26+
### Other
27+
28+
- Change web-transport-trait::Session::closed() to return a Result ([#110](https://github.com/kixelated/web-transport/pull/110))
29+
- Use workspace dependencies. ([#108](https://github.com/kixelated/web-transport/pull/108))
30+
- Make traits compatible with WASM ([#107](https://github.com/kixelated/web-transport/pull/107))
31+
- Add impl Clone for Client ([#104](https://github.com/kixelated/web-transport/pull/104))
32+
- Check all feature combinations ([#102](https://github.com/kixelated/web-transport/pull/102))
33+
2434
## [0.5.1](https://github.com/kixelated/web-transport/compare/web-transport-wasm-v0.5.0...web-transport-wasm-v0.5.1) - 2025-06-02
2535

2636
### Fixed

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

8-
version = "0.5.2"
8+
version = "0.5.3"
99
edition = "2021"
1010

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

web-transport-ws/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.2](https://github.com/kixelated/web-transport/compare/web-transport-ws-v0.1.1...web-transport-ws-v0.1.2) - 2025-10-17
11+
12+
### Other
13+
14+
- Change web-transport-trait::Session::closed() to return a Result ([#110](https://github.com/kixelated/web-transport/pull/110))
15+
- Use workspace dependencies. ([#108](https://github.com/kixelated/web-transport/pull/108))
16+
1017
## [0.1.1](https://github.com/kixelated/web-transport/compare/web-transport-ws-v0.1.0...web-transport-ws-v0.1.1) - 2025-09-04
1118

1219
### Other

0 commit comments

Comments
 (0)