From 74f040f5bfd32b9ca07ecffc656047a2ccb19bc8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 24 Jan 2019 10:37:47 -0800 Subject: [PATCH] v0.1.16 (#344) --- 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 c76213b..efac7f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# 0.1.15 (January 12, 2018) +# 0.1.16 (January 24, 2019) + +* Log header values when malformed (#342). + +# 0.1.15 (January 12, 2019) * Fix race condition bug related to shutting down the client (#338). diff --git a/Cargo.toml b/Cargo.toml index 6b77103..6c9d69b 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.15" +version = "0.1.16" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" -documentation = "https://docs.rs/h2/0.1.15/h2/" +documentation = "https://docs.rs/h2/0.1.16/h2/" homepage = "https://github.com/carllerche/h2" repository = "https://github.com/carllerche/h2" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 3c29d22..b56c1be 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.15")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.16")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]