diff --git a/CHANGELOG.md b/CHANGELOG.md index 3de372b8..62fd3ebe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.11 (November 13, 2023) + +* Fix MIRI error in `header::Iter`. + # 0.2.10 (November 10, 2023) * Fix parsing of `Authority` to handle square brackets in incorrect order. diff --git a/Cargo.toml b/Cargo.toml index 3672249b..25ca5011 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.10" +version = "0.2.11" 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 22901438..ed570e1f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.10")] +#![doc(html_root_url = "https://docs.rs/http/0.2.11")] //! A general purpose library of common HTTP types //!