Skip to content

Commit ccbc600

Browse files
authored
h3 v0.0.7 (#285)
1 parent 2f99011 commit ccbc600

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

changelog-h3.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### v0.0.7 (2025-03-13)
2+
* Expose poll_recv_trailers APIs
3+
* Avoiding extra allocation for shared error
4+
* Added .id() for client RequestStream
5+
* move datagram to separate crate
6+
* Client ability to stop streams with error code
7+
* avoid copying all data when sending
8+
* Add extended CONNECT setting for client conn
9+
110
### v0.0.6 (2024-07-01)
211
* Consolidate quic trait redundancy
312
* start qpack streams

h3-datagram/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ bytes = "1.4"
99
pin-project-lite = { version = "0.2", default-features = false }
1010

1111
[dependencies.h3]
12-
version = "0.0.6"
12+
version = "0.0.7"
1313
path = "../h3"
1414
features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]

h3-quinn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["network-programming", "web-programming"]
1313
license = "MIT"
1414

1515
[dependencies]
16-
h3 = { version = "0.0.6", path = "../h3" }
16+
h3 = { version = "0.0.7", path = "../h3" }
1717
bytes = "1"
1818
quinn = { version = "0.11", default-features = false, features = [
1919
"futures-io",

h3-webtransport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ tokio = { version = "1.28", default-features = false }
1515
h3-datagram = { path = "../h3-datagram" }
1616

1717
[dependencies.h3]
18-
version = "0.0.6"
18+
version = "0.0.7"
1919
path = "../h3"
2020
features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]

h3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "h3"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
rust-version = "1.70"
55
authors = [
66
"Sean McArthur <[email protected]>",

0 commit comments

Comments
 (0)