From a955a15091fc2cb47f5c95bc064c26df17dd901d Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Mon, 14 May 2018 10:35:22 -0700 Subject: [PATCH] Bump version to v0.1.7 (#276) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b715dcf..219ff6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.7 (May 14, 2018) + +* Misc bug fixes (#266, #273, #261, #275). + # 0.1.6 (April 24, 2018) * Misc bug fixes related to stream management (#258, #260, #262). diff --git a/Cargo.toml b/Cargo.toml index 4d39a3c..ea1a864 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "h2" # - Update html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.6" +version = "0.1.7" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 1dfbf84..b2a78ff 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.5")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.7")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]