Bump version to v0.1.15 (#339)

This commit is contained in:
Carl Lerche
2019-01-13 09:53:19 -08:00
committed by GitHub
parent d6e1fbeed8
commit 78c39d8e65
4 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
# 0.1.15 (January 12, 2018)
* Fix race condition bug related to shutting down the client (#338).
# 0.1.14 (December 5, 2018) # 0.1.14 (December 5, 2018)
* Fix closed streams to always return window capacity to the connection (#334). * Fix closed streams to always return window capacity to the connection (#334).

View File

@@ -5,11 +5,11 @@ name = "h2"
# - html_root_url. # - html_root_url.
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create git tag # - Create git tag
version = "0.1.14" version = "0.1.15"
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"
documentation = "https://docs.rs/h2" documentation = "https://docs.rs/h2/0.1.15/h2/"
homepage = "https://github.com/carllerche/h2" homepage = "https://github.com/carllerche/h2"
repository = "https://github.com/carllerche/h2" repository = "https://github.com/carllerche/h2"
readme = "README.md" readme = "README.md"

View File

@@ -9,7 +9,7 @@ A Tokio aware, HTTP/2.0 client & server implementation for Rust.
More information about this crate can be found in the [crate documentation][dox]. More information about this crate can be found in the [crate documentation][dox].
[dox]: https://docs.rs/h2 [dox]: https://docs.rs/h2/0.1.15/h2/
## Features ## Features
@@ -38,7 +38,7 @@ To use `h2`, first add this to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
h2 = "0.1" h2 = "0.1.15"
``` ```
Next, add this to your crate: Next, add this to your crate:

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.14")] #![doc(html_root_url = "https://docs.rs/h2/0.1.15")]
#![deny(missing_debug_implementations, missing_docs)] #![deny(missing_debug_implementations, missing_docs)]
#![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(warnings))]