diff --git a/CHANGELOG.md b/CHANGELOG.md index 39d23b6a30..0d52b59b14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### v0.13.4 (2020-03-20) + + +#### Bug Fixes + +* **http1:** try to drain connection buffer if user drops Body ([d838d54f](https://github.com/hyperium/hyper/commit/d838d54fdf0fc4a613612f68274f3520f333dd8e)) + + +#### Features + +* **http2:** add HTTP2 keep-alive support for client and server ([9a8413d9](https://github.com/hyperium/hyper/commit/9a8413d91081ad5a949276f05337e984c455e251)) + + ### v0.13.3 (2020-03-03) diff --git a/Cargo.toml b/Cargo.toml index edd4056dea..dfca285ac7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.13.3" # don't forget to update html_root_url +version = "0.13.4" # don't forget to update html_root_url description = "A fast and correct HTTP library." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index ebf90ab397..a50c618c8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.13.3")] +#![doc(html_root_url = "https://docs.rs/hyper/0.13.4")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(rust_2018_idioms))]