Bump version to v0.1.13 (#324)

This commit is contained in:
Carl Lerche
2018-10-16 14:41:23 -07:00
committed by GitHub
parent 6b23542a55
commit 80b4ec5073
4 changed files with 15 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
# 0.1.13 (October 16, 2018)
* Add client support for Push Promises (#314).
* Expose `io::Error` from `h2::Error` (#311)
* Misc bug fixes (#304, #309, #319, #313, #320).
# 0.1.12 (August 8, 2018)
* Fix initial send window size (#301).

View File

@@ -1,14 +1,18 @@
[package]
name = "h2"
# When releasing to crates.io:
# - Update html_root_url.
# - Deploy docs.
# - Update doc URL.
# - Cargo.toml
# - README
# - html_root_url.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.1.12"
version = "0.1.13"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "An HTTP/2.0 client and server"
documentation = "https://docs.rs/h2"
documentation = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2"
homepage = "https://github.com/carllerche/h2"
repository = "https://github.com/carllerche/h2"
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].
[dox]: https://docs.rs/h2
[dox]: http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2/
## Features

View File

@@ -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.12")]
#![doc(html_root_url = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2")]
#![deny(missing_debug_implementations, missing_docs)]
#![cfg_attr(test, deny(warnings))]