diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd5154f96..ad0f31e01e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v0.14.4 (2021-02-05) + + +#### Bug Fixes + +* **build**: Fix compile error when only `http1` feature was enabled. + + ### v0.14.3 (2021-02-05) diff --git a/Cargo.toml b/Cargo.toml index 9617ff7c23..f63170bee4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.14.3" # don't forget to update html_root_url +version = "0.14.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 7029c517a3..d5fb494327 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.14.3")] +#![doc(html_root_url = "https://docs.rs/hyper/0.14.4")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(rust_2018_idioms))]