diff --git a/CHANGELOG.md b/CHANGELOG.md index e07a220c..04dc9da6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.19 (October 15, 2019) + +* Allow `%` in IPv6 addresses in `Uri` (#343). + # 0.1.18 (July 26, 2019) * Fix compilation of `HeaderName` parsing on WASM targets (#324). diff --git a/Cargo.toml b/Cargo.toml index 27332c4b..180540b5 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.18" +version = "0.1.19" 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 d857f879..a7759e3c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.18")] +#![doc(html_root_url = "https://docs.rs/http/0.1.19")] //! A general purpose library of common HTTP types //!