diff --git a/CHANGELOG.md b/CHANGELOG.md index d3f8f65..278858c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.6 (June 13, 2018) + +* Add `HeaderName::from_static()` constructor (#195). +* Add `Authority::from_static()` constructor (#186). +* Implement `From` for `HeaderValue` (#184). +* Fix duplicate keys when iterating over `header::Keys` (#201). + # 0.1.5 (February 28, 2018) * Add websocket handshake related header constants (#162). diff --git a/Cargo.toml b/Cargo.toml index 407e497..78f533c 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.5" +version = "0.1.6" 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 fcbb913..94a8d3d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.5")] +#![doc(html_root_url = "https://docs.rs/http/0.1.6")] //! A general purpose library of common HTTP types //!