diff --git a/CHANGELOG.md b/CHANGELOG.md index e21e65de..94e18517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.15 (January 22, 2019) + +* Fix `Uri::host()` to include brackets of IPv6 literals (#292) +* Add `scheme_str` and `port_u16` methods to `Uri` (#287) +* Add `method_ref`, `uri_ref`, and `headers_ref` to `request::Builder` (#284) + # 0.1.14 (November 21, 2018) * Add `Port` struct (#252, #255, #265) diff --git a/Cargo.toml b/Cargo.toml index 412d4146..33608cd0 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.14" +version = "0.1.15" 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 69f236c2..788ec979 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.14")] +#![doc(html_root_url = "https://docs.rs/http/0.1.15")] //! A general purpose library of common HTTP types //!