From 90d346bad82b86039cf388cdf7b60d7eac5ff473 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 16 May 2019 13:54:39 -0700 Subject: [PATCH] v0.1.20 --- CHANGELOG.md | 6 +++++- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5f8be3..c6275e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# 0.1.19 (May 5, 2019) +# 0.1.20 (May 16, 2019) + +* Fix lifetime conflict for older compilers. + +# 0.1.19 (May 15, 2019) * Fix rare crash if `CONTINUATION` frame resumed in the middle of headers with the same name. * Fix HPACK encoder using an old evicted index for repeated header names. diff --git a/Cargo.toml b/Cargo.toml index c7c41ed..41eb48c 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.19" +version = "0.1.20" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" -documentation = "https://docs.rs/h2/0.1.19/h2/" +documentation = "https://docs.rs/h2/0.1.20/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 7ef08cb..e05a1fa 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.19")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.20")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]