From 78ab6167c4e3345f293a0560d0ebddda96d12dc9 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Tue, 31 Jul 2018 11:44:01 -0700 Subject: [PATCH] v0.1.11 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52f11fa..24e6a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.11 (July 31, 2018) + +* Add `stream_id` accessors to public API types (#292). +* Fix potential panic when dropping clients (#295). +* Fix busy loop when shutting down server (#296). + # 0.1.10 (June 15, 2018) * Fix potential panic in `SendRequest::poll_ready()` (#281). diff --git a/Cargo.toml b/Cargo.toml index b43c252..56d42b1 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.10" +version = "0.1.11" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index f723ec3..d410215 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.10")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.11")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]