diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dfedc2..e07a220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.18 (July 26, 2019) + +* Fix compilation of `HeaderName` parsing on WASM targets (#324). +* Implement `HttpTryFrom` for `HeaderMap` (#326). +* Export `http::header::HeaderValue` as `http::HeaderValue`. + # 0.1.17 (April 5, 2019) * Add `Error::inner_ref()` to view the kind of error (#303) diff --git a/Cargo.toml b/Cargo.toml index 7c8c9fa..27332c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,10 @@ name = "http" # - Update html_root_url in lib.rs. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.17" +version = "0.1.18" readme = "README.md" documentation = "https://docs.rs/http" repository = "https://github.com/hyperium/http" -homepage = "https://github.com/hyperium/http" license = "MIT/Apache-2.0" authors = [ "Alex Crichton ", diff --git a/src/lib.rs b/src/lib.rs index 1e0554d..d857f87 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.17")] +#![doc(html_root_url = "https://docs.rs/http/0.1.18")] //! A general purpose library of common HTTP types //!