This commit is contained in:
Eliza Weisman
2018-07-31 11:44:01 -07:00
committed by Sean McArthur
parent c564273986
commit 78ab6167c4
3 changed files with 8 additions and 2 deletions

View File

@@ -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) # 0.1.10 (June 15, 2018)
* Fix potential panic in `SendRequest::poll_ready()` (#281). * Fix potential panic in `SendRequest::poll_ready()` (#281).

View File

@@ -4,7 +4,7 @@ name = "h2"
# - Update html_root_url. # - Update html_root_url.
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create git tag # - Create git tag
version = "0.1.10" version = "0.1.11"
license = "MIT" license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"] authors = ["Carl Lerche <me@carllerche.com>"]
description = "An HTTP/2.0 client and server" description = "An HTTP/2.0 client and server"

View File

@@ -84,7 +84,7 @@
//! [`server::handshake`]: server/fn.handshake.html //! [`server::handshake`]: server/fn.handshake.html
//! [`client::handshake`]: client/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)] #![deny(warnings, missing_debug_implementations, missing_docs)]
#[macro_use] #[macro_use]