diff --git a/CHANGELOG.md b/CHANGELOG.md index c5bc636d..3de372b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.2.10 (November 10, 2023) + +* Fix parsing of `Authority` to handle square brackets in incorrect order. +* Fix `HeaderMap::with_capacity()` to handle arithmetic overflow. + # 0.2.9 (February 17, 2023) * Add `HeaderName` constants for `cache-status` and `cdn-cache-control`. diff --git a/Cargo.toml b/Cargo.toml index 75eaae57..3672249b 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.2.9" +version = "0.2.10" 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 38a4c2aa..22901438 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.9")] +#![doc(html_root_url = "https://docs.rs/http/0.2.10")] //! A general purpose library of common HTTP types //!