diff --git a/CHANGELOG.md b/CHANGELOG.md index dae64644..34f393c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.4.0 (November 24, 2025) + +- Add `StatusCode::EARLY_HINTS` constant for 103 Early Hints. +- Make `StatusCode::from_u16` now a `const fn`. +- Make `Authority::from_static` now a `const fn`. +- Make `PathAndQuery::from_static` now a `const fn`. +- MSRV increased to 1.57 (allows legible const fn panic messages). + # 1.3.1 (March 11, 2025) * Fix validation that all characters are UTF-8 in URI path and query. diff --git a/Cargo.toml b/Cargo.toml index c66c6fa4..1c8906f0 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.3.1" +version = "1.4.0" readme = "README.md" documentation = "https://docs.rs/http" repository = "https://github.com/hyperium/http"