From dc2f85499bdc72ce45a47a0e7b96b9a5f30ca4da Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 21 Nov 2018 13:37:08 -0800 Subject: [PATCH] Bump version to v0.1.14 (#279) --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97b1e78..e21e65d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.1.14 (November 21, 2018) + +* Add `Port` struct (#252, #255, #265) +* Introduce `Uri` builder (#219) +* Empty `Method` no longer considered valid (#262) +* Fix `Uri` equality when terminating question mark is present (#270) +* Allow % character in userinfo (#269) +* Support additional tokens for header names (#271) +* Export `http::headers::{IterMut, ValuesMut}` (#278) + # 0.1.13 (September 14, 2018) * impl `fmt::Display` for `HeaderName` (#249) diff --git a/Cargo.toml b/Cargo.toml index 09d73eb..412d414 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.1.13" +version = "0.1.14" 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 d042e47..69f236c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.13")] +#![doc(html_root_url = "https://docs.rs/http/0.1.14")] //! A general purpose library of common HTTP types //!