From 60749db680075c606eb9e5204e9d0446332ac8a0 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 5 Apr 2018 13:13:26 -0700 Subject: [PATCH] Bump version to v0.1.4 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1bc5a6..8082359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.4 (April 5, 2018) + +* Add `initial_connection_window_size` to client and server `Builder`s (#249). +* Add `graceful_shutdown` and `abrupt_shutdown` to `server::Connection`, + deprecating `close_connection` (#250). + # 0.1.3 (March 28, 2018) * Allow configuring max streams before the peer's settings frame is diff --git a/Cargo.toml b/Cargo.toml index 20907ed..0917982 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.3" +version = "0.1.4" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" @@ -33,7 +33,7 @@ unstable = [] futures = "0.1" tokio-io = "0.1.4" bytes = "0.4" -http = "0.1" +http = "0.1.3" byteorder = "1.0" log = "0.4.1" fnv = "1.0.5" diff --git a/src/lib.rs b/src/lib.rs index 1b64837..0b74731 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.3")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.4")] #![deny(warnings, missing_debug_implementations, missing_docs)] #[macro_use]