Bump version to v0.1.14 (#279)

This commit is contained in:
Carl Lerche
2018-11-21 13:37:08 -08:00
committed by GitHub
parent 45a9612a75
commit dc2f85499b
3 changed files with 12 additions and 2 deletions
+10
View File
@@ -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)
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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
//!