From ead020c94c62931484bce534fa30f4d4e604b7d5 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 21 Sep 2021 09:46:36 -0700 Subject: [PATCH] v0.2.5 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b8d0243..a7eab4da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.2.5 (September 21, 2021) + +* Add `is_empty()` and `len()` methods to `Extensions`. +* Add `version_ref()` method to `request::Builder`. +* Implement `TryFrom>` and `TryFrom` for `Authority`, `Uri`, `PathAndQuery`, and `HeaderName`. +* Make `HeaderValue::from_static` a `const fn`. + # 0.2.4 (April 4, 2021) * Fix `Uri` parsing to allow `{`, `"`, and `}` in paths. diff --git a/Cargo.toml b/Cargo.toml index 9bb6ee49..5bcfa7bc 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.4" +version = "0.2.5" 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 3b6965c9..db93cad1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.4")] +#![doc(html_root_url = "https://docs.rs/http/0.2.5")] //! A general purpose library of common HTTP types //!