diff --git a/CHANGELOG.md b/CHANGELOG.md index 31a38f1..cacd12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.8 (July 23, 2018) + +* Add fuller set of `PartialEq` for `Method` (#221) +* Reduce size of `HeaderMap` by using `Box<[Entry]>` instea of `Vec` (#224) +* Reduce size of `Extensions` by storing as `Option>` (#227) +* Implement `Iterator::size_hint` for most iterators in `header` (#226) + # 0.1.7 (June 22, 2018) * Add `From for HeaderValue` for most integer types (#218). diff --git a/Cargo.toml b/Cargo.toml index 5b90f77..71c970c 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.7" +version = "0.1.8" 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 3699e13..47b924f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.7")] +#![doc(html_root_url = "https://docs.rs/http/0.1.8")] //! A general purpose library of common HTTP types //!