From 80b4ec50730f394a903add35d8d8f44bb5e4d7d9 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 16 Oct 2018 14:41:23 -0700 Subject: [PATCH] Bump version to v0.1.13 (#324) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 10 +++++++--- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e4bb85..850aa40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/Cargo.toml b/Cargo.toml index 73a2eaf..c9d7b4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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" diff --git a/README.md b/README.md index d3b5a76..d48b75f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index bb63a04..55c1885 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]