From 6d06a7571ac38f48c5e51105d0b9c2de1b9758d8 Mon Sep 17 00:00:00 2001 From: Ruben2424 <61056653+Ruben2424@users.noreply.github.com> Date: Mon, 20 May 2024 15:05:41 +0200 Subject: [PATCH] h3 v0.0.5 (#239) --- changelog-h3.md | 5 +++++ h3-quinn/Cargo.toml | 2 +- h3-webtransport/Cargo.toml | 2 +- h3/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/changelog-h3.md b/changelog-h3.md index d50a7309..34febf67 100644 --- a/changelog-h3.md +++ b/changelog-h3.md @@ -1,3 +1,8 @@ +### v0.0.5 (2024-05-20) +* add `poll_recv_data()` for server +* use 2021 edition +* some cleanups + ### v0.0.4 (2024-01-24) * Update to `http` v1.0 diff --git a/h3-quinn/Cargo.toml b/h3-quinn/Cargo.toml index b634e024..831649e0 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.4", path = "../h3" } +h3 = { version = "0.0.5", 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 3f5e743e..a502cd0e 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.4" +version = "0.0.5" 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 5d620e6b..7475942a 100644 --- a/h3/Cargo.toml +++ b/h3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "h3" -version = "0.0.4" +version = "0.0.5" rust-version = "1.63" authors = [ "Sean McArthur ",