diff --git a/changelog-h3.md b/changelog-h3.md index 34febf67..4801fe32 100644 --- a/changelog-h3.md +++ b/changelog-h3.md @@ -1,3 +1,8 @@ +### v0.0.6 (2024-07-01) +* Consolidate quic trait redundancy +* start qpack streams +* send grease stream in the background + ### v0.0.5 (2024-05-20) * add `poll_recv_data()` for server * use 2021 edition diff --git a/h3-quinn/Cargo.toml b/h3-quinn/Cargo.toml index 4f380bf0..d2bd5e15 100644 --- a/h3-quinn/Cargo.toml +++ b/h3-quinn/Cargo.toml @@ -13,7 +13,7 @@ categories = ["network-programming", "web-programming"] license = "MIT" [dependencies] -h3 = { version = "0.0.5", path = "../h3" } +h3 = { version = "0.0.6", path = "../h3" } bytes = "1" quinn = { version = "0.11", default-features = false, features = [ "futures-io", diff --git a/h3-webtransport/Cargo.toml b/h3-webtransport/Cargo.toml index a502cd0e..16c6f44c 100644 --- a/h3-webtransport/Cargo.toml +++ b/h3-webtransport/Cargo.toml @@ -14,6 +14,6 @@ tracing = "0.1.37" tokio = { version = "1.28", default_features = false } [dependencies.h3] -version = "0.0.5" +version = "0.0.6" path = "../h3" features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"] diff --git a/h3/Cargo.toml b/h3/Cargo.toml index 5d740e99..d8b58472 100644 --- a/h3/Cargo.toml +++ b/h3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "h3" -version = "0.0.5" +version = "0.0.6" rust-version = "1.63" authors = [ "Sean McArthur ",