diff --git a/CHANGELOG.md b/CHANGELOG.md index 791012e138..043cc1d3d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.13.10 (2021-02-05) + + +#### Bug Fixes + +* **http1:** fix server misinterpretting multiple Transfer-Encoding headers ([6d9e5f9f](https://github.com/hyperium/hyper/commit/6d9e5f9fd1691a0befe70b5b5be3393e45cac66a)) + + ### v0.13.9 (2020-11-02) diff --git a/Cargo.toml b/Cargo.toml index 0034f1deb5..ac1141b3ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.13.9" # don't forget to update html_root_url +version = "0.13.10" # 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 0897c25c34..054e5c8aa8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.13.9")] +#![doc(html_root_url = "https://docs.rs/hyper/0.13.10")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(rust_2018_idioms))]