diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b9582b4..88126595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index b8a2c8c2..12f242a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] 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." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index 4511b5fa..75abe1a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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(warnings)] #![deny(missing_debug_implementations)]