From 95ad79b2712973376ba2ff66930c9e2a0cfba8b2 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 28 Apr 2022 11:25:18 -0700 Subject: [PATCH] v0.2.7 --- CHANGELOG.md | 6 ++++-- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc1c2d01..6a77a86e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# Unreleased +# 0.2.7 (April 28, 2022) -* Add `extend()` method to `Extension`. +* Add `extend()` method to `Extensions`. +* Add `From` and `From` impls for `Uri`. +* Make `HeaderName::from_static` a `const fn`. # 0.2.6 (December 30, 2021) diff --git a/Cargo.toml b/Cargo.toml index 3c2e51d7..3542e1c1 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.6" +version = "0.2.7" 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 9c6a78db..ebf24ad9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.2.6")] +#![doc(html_root_url = "https://docs.rs/http/0.2.7")] //! A general purpose library of common HTTP types //!