diff --git a/CHANGELOG.md b/CHANGELOG.md index 94e1851..2b081f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.16 (February 19, 2019) + +* Fix `Uri` to permit more characters in the `path` (#296) + # 0.1.15 (January 22, 2019) * Fix `Uri::host()` to include brackets of IPv6 literals (#292) diff --git a/Cargo.toml b/Cargo.toml index 33608cd..fe006f6 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.15" +version = "0.1.16" 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 788ec97..f838fec 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.15")] +#![doc(html_root_url = "https://docs.rs/http/0.1.16")] //! A general purpose library of common HTTP types //!