diff --git a/CHANGELOG.md b/CHANGELOG.md index 4edeb470..c5bc636d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# Unreleased +# 0.2.9 (February 17, 2023) * Add `HeaderName` constants for `cache-status` and `cdn-cache-control`. +* Implement `Hash` for `PathAndQuery`. +* Re-export `HeaderName` at crate root. # 0.2.8 (June 6, 2022) diff --git a/Cargo.toml b/Cargo.toml index 6a4c4fa5..75eaae57 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.8" +version = "0.2.9" 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 42118296..38a4c2aa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.8")] +#![doc(html_root_url = "https://docs.rs/http/0.2.9")] //! A general purpose library of common HTTP types //!