From b442af0410c99ebd703bb67bcb36f7325451235f Mon Sep 17 00:00:00 2001 From: Sean McArthur <sean@seanmonstar.com> Date: Tue, 11 Mar 2025 11:02:50 -0400 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48f74d6a..669936bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.3.0 (March 11, 2025) + +* Allow most UTF-8 characters in URI path and query. +* Fix `HeaderMap::reserve()` to allocate sufficient capacity. + # 1.2.0 (December 3, 2024) * Add `StatusCode::TOO_EARLY` constant for 425 status. diff --git a/Cargo.toml b/Cargo.toml index 1a6e9c9d..73a38cb1 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.2.0" +version = "1.3.0" readme = "README.md" documentation = "https://docs.rs/http" repository = "https://github.com/hyperium/http"