This commit is contained in:
Sean McArthur
2018-11-21 16:43:12 -08:00
parent e455fa2452
commit 7fb6e3a3ff
3 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,16 @@
### v0.12.16 (2018-11-21)
#### Bug Fixes
* **client:** fix connection leak when Response finishes before Request body ([e455fa24](https://github.com/hyperium/hyper/commit/e455fa2452cf45d66de6b4c3dc567e2b5d2368a4), closes [#1717](https://github.com/hyperium/hyper/issues/1717))
#### Features
* **client:** add `http1_read_buf_exact_size` Builder option ([2e7250b6](https://github.com/hyperium/hyper/commit/2e7250b6698407b97961b8fcae78696e94d6ea57))
### v0.12.15 (2018-11-20)

View File

@@ -1,6 +1,6 @@
[package]
name = "hyper"
version = "0.12.15" # don't forget to update html_root_url
version = "0.12.16" # don't forget to update html_root_url
description = "A fast and correct HTTP library."
readme = "README.md"
homepage = "https://hyper.rs"

View File

@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/hyper/0.12.15")]
#![doc(html_root_url = "https://docs.rs/hyper/0.12.16")]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))]