Skip to content

Commit 957de43

Browse files
chore: release (#83)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent bc8ec5d commit 957de43

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

web-transport-quinn/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.7.2](https://github.com/kixelated/web-transport-rs/compare/web-transport-quinn-v0.7.1...web-transport-quinn-v0.7.2) - 2025-06-02
10+
11+
### Fixed
12+
13+
- fix connecting to ipv6 using quinn backend ([#82](https://github.com/kixelated/web-transport-rs/pull/82))
14+
915
## [0.7.1](https://github.com/kixelated/web-transport-rs/compare/web-transport-quinn-v0.7.0...web-transport-quinn-v0.7.1) - 2025-05-21
1016

1117
### 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-rs"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.7.1"
8+
version = "0.7.2"
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
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.1](https://github.com/kixelated/web-transport-rs/compare/web-transport-wasm-v0.5.0...web-transport-wasm-v0.5.1) - 2025-06-02
10+
11+
### Fixed
12+
13+
- fix connecting to ipv6 using quinn backend ([#82](https://github.com/kixelated/web-transport-rs/pull/82))
14+
915
## [0.4.7](https://github.com/kixelated/web-transport-rs/compare/web-transport-wasm-v0.4.6...web-transport-wasm-v0.4.7) - 2025-05-21
1016

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

8-
version = "0.5.0"
8+
version = "0.5.1"
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
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.9.3](https://github.com/kixelated/web-transport-rs/compare/web-transport-v0.9.2...web-transport-v0.9.3) - 2025-06-02
10+
11+
### Fixed
12+
13+
- fix connecting to ipv6 using quinn backend ([#82](https://github.com/kixelated/web-transport-rs/pull/82))
14+
915
## [0.9.2](https://github.com/kixelated/web-transport-rs/compare/web-transport-v0.9.1...web-transport-v0.9.2) - 2025-05-21
1016

1117
### Other

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

8-
version = "0.9.2"
8+
version = "0.9.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.7.1", path = "../web-transport-quinn" }
21+
web-transport-quinn = { version = "0.7.2", path = "../web-transport-quinn" }
2222

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

0 commit comments

Comments
 (0)