Bump version to v0.1.2 (#239)

This commit is contained in:
Carl Lerche
2018-03-13 18:11:11 -07:00
committed by GitHub
parent 5d4c89b1a9
commit 0cb3e648e9
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
# 0.1.2 (March 13, 2018)
* Fix another bug relating to resetting connections and reaching
max concurrency (#238).
# 0.1.1 (March 8, 2018) # 0.1.1 (March 8, 2018)
* When streams are dropped, close the connection (#222). * When streams are dropped, close the connection (#222).

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.1" version = "0.1.2"
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/struct.Server.html#method.handshake //! [`Server::handshake`]: server/struct.Server.html#method.handshake
//! [`Client::handshake`]: client/struct.Client.html#method.handshake //! [`Client::handshake`]: client/struct.Client.html#method.handshake
#![doc(html_root_url = "https://docs.rs/h2/0.1.1")] #![doc(html_root_url = "https://docs.rs/h2/0.1.2")]
#![deny(warnings, missing_debug_implementations, missing_docs)] #![deny(warnings, missing_debug_implementations, missing_docs)]
#[macro_use] #[macro_use]