From 51d021c0580e0481355d0a99eb1b63a579371094 Mon Sep 17 00:00:00 2001 From: Ruben2424 <61056653+Ruben2424@users.noreply.github.com> Date: Tue, 11 Apr 2023 20:43:21 +0200 Subject: [PATCH] h3 v0.0.2 (#187) --- changelog-h3.md | 7 +++++++ h3-quinn/Cargo.toml | 2 +- h3/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/changelog-h3.md b/changelog-h3.md index 61c19dcd..3d664944 100644 --- a/changelog-h3.md +++ b/changelog-h3.md @@ -1,3 +1,10 @@ +### v0.0.2 (2023-04-11) + +#### Bug Fixes + +* distinguish push and stream ids ([da29aea](https://github.com/hyperium/h3/commit/da29aea305d61146664189346b3718458cb9f4d6)) + + ### v0.0.1 (2023-03-09) initial release \ No newline at end of file diff --git a/h3-quinn/Cargo.toml b/h3-quinn/Cargo.toml index 2f813377..91af9e43 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.1", path = "../h3" } +h3 = { version = "0.0.2", path = "../h3" } bytes = "1" quinn = { version = "0.9.3", default-features = false } quinn-proto = { version = "0.9.2", default-features = false } diff --git a/h3/Cargo.toml b/h3/Cargo.toml index 2ea4ccc1..59b22f6d 100644 --- a/h3/Cargo.toml +++ b/h3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "h3" -version = "0.0.1" +version = "0.0.2" rust-version = "1.57" authors = [ "Sean McArthur ",