From 430d28723fd751a2500e39da48ee3e711a44c42b Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 28 Mar 2018 12:50:46 -0700 Subject: [PATCH] Bump version to v0.1.3 (#248) --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f999794..f1bc5a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.3 (March 28, 2018) + +* Allow configuring max streams before the peer's settings frame is + received (#242). +* Fix HPACK decoding bug with regards to large literals (#244). +* Fix state transition bug triggered by receiving a RST_STREAM frame (#247). + # 0.1.2 (March 13, 2018) * Fix another bug relating to resetting connections and reaching diff --git a/Cargo.toml b/Cargo.toml index ab37ec0..20907ed 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.2" +version = "0.1.3" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 6c5bba4..1b64837 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`Server::handshake`]: server/struct.Server.html#method.handshake //! [`Client::handshake`]: client/struct.Client.html#method.handshake -#![doc(html_root_url = "https://docs.rs/h2/0.1.2")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.3")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]