diff --git a/CHANGELOG.md b/CHANGELOG.md index 04dc9da6..748ae833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.20 (November 26, 2019) + +* Fix possible double-free if `header::Drain` iterator is `std::mem::forgot`en (#357). +* Fix possible data race if multiple `header::ValueDrain`s are iterated on different threads (#362). +* Fix `HeaderMap::reserve` capacity overflows (#360). +* Fix parsing long authority-form `Uri`s (#351). + # 0.1.19 (October 15, 2019) * Allow `%` in IPv6 addresses in `Uri` (#343). diff --git a/Cargo.toml b/Cargo.toml index 180540b5..6e6608ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "http" # - Update html_root_url in lib.rs. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.19" +version = "0.1.20" readme = "README.md" documentation = "https://docs.rs/http" repository = "https://github.com/hyperium/http" diff --git a/src/lib.rs b/src/lib.rs index a7759e3c..874cbbbb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.19")] +#![doc(html_root_url = "https://docs.rs/http/0.1.20")] //! A general purpose library of common HTTP types //!