This commit is contained in:
Sean McArthur
2018-06-28 16:21:27 -07:00
parent c03c39e0ff
commit 8cf6f145ac
3 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
### v0.12.4 (2018-06-28)
#### Bug Fixes
* **client:**
* fix keep-alive header detection when parsing responses ([c03c39e0](https://github.com/hyperium/hyper/commit/c03c39e0ffca94bce265db92281a50b2abae6f2b))
* try to reuse connections when pool checkout wins ([f2d464ac](https://github.com/hyperium/hyper/commit/f2d464ac79b47f988bffc826b80cf7d107f80694))
### v0.12.3 (2018-06-25) ### v0.12.3 (2018-06-25)

View File

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

View File

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