From ad5a40c682ec4e41118e8017eb6f92956d81e999 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 30 May 2019 10:21:20 -0700 Subject: [PATCH] v0.1.21 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6275e6..ee1ed56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.21 (May 30, 2019) + +* Fix write loop when a header didn't fit in write buffer. + # 0.1.20 (May 16, 2019) * Fix lifetime conflict for older compilers. diff --git a/Cargo.toml b/Cargo.toml index 41eb48c..599a46a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,11 +5,11 @@ name = "h2" # - html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.20" +version = "0.1.21" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" -documentation = "https://docs.rs/h2/0.1.20/h2/" +documentation = "https://docs.rs/h2/0.1.21/h2/" repository = "https://github.com/hyperium/h2" readme = "README.md" keywords = ["http", "async", "non-blocking"] diff --git a/src/lib.rs b/src/lib.rs index e05a1fa..da8cce2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`server::handshake`]: server/fn.handshake.html //! [`client::handshake`]: client/fn.handshake.html -#![doc(html_root_url = "https://docs.rs/h2/0.1.20")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.21")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]