diff --git a/CHANGELOG.md b/CHANGELOG.md index 3de372b8..94aa956f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 1.0.0 (November 15, 2023) + +- Implement `Clone` for `Request`, `Response`, and `Extensions`. This breaking change requires + that all extensions now implement `Clone`. +- Add a default-on `std` feature. Disabling it currently is not supported. +- Fix MIRI warnings in `HeaderMap::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 230c77e2..7f20e71f 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 = "1.0.0-dev" +version = "1.0.0" readme = "README.md" documentation = "https://docs.rs/http" repository = "https://github.com/hyperium/http" @@ -23,8 +23,6 @@ edition = "2018" # When updating this value, don't forget to also adjust the GitHub Actions config. rust-version = "1.49.0" -publish = false - [workspace] members = [ ".", diff --git a/src/lib.rs b/src/lib.rs index c845fd7a..54714ba7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,3 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.10")] - //! A general purpose library of common HTTP types //! //! This crate is a general purpose library for common types found when working