From 1b9469ff75cc09893658cd378c4c57dee6a07cc4 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 31 May 2018 20:42:52 +0200 Subject: [PATCH] v0.1.9 (#280) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d56ae..92fff8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.9 (May 31, 2018) + +* Add `poll_reset` to `SendResponse` and `SendStream` (#279). + # 0.1.8 (May 23, 2018) * Fix client bug when max streams is reached. (#277) diff --git a/Cargo.toml b/Cargo.toml index a85271c..7b3c23c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "h2" # - Update html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.8" +version = "0.1.9" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 54cb39f..9c492ec 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.8")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.9")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]