Bump version to v0.1.7 (#276)

This commit is contained in:
Carl Lerche
2018-05-14 10:35:22 -07:00
committed by GitHub
parent bb454e017c
commit a955a15091
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
# 0.1.7 (May 14, 2018)
* Misc bug fixes (#266, #273, #261, #275).
# 0.1.6 (April 24, 2018) # 0.1.6 (April 24, 2018)
* Misc bug fixes related to stream management (#258, #260, #262). * Misc bug fixes related to stream management (#258, #260, #262).

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.6" version = "0.1.7"
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.5")] #![doc(html_root_url = "https://docs.rs/h2/0.1.7")]
#![deny(warnings, missing_debug_implementations, missing_docs)] #![deny(warnings, missing_debug_implementations, missing_docs)]
#[macro_use] #[macro_use]