diff --git a/CHANGELOG.md b/CHANGELOG.md index 0638458..97b1e78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.13 (September 14, 2018) + +* impl `fmt::Display` for `HeaderName` (#249) +* Fix `uri::Authority` parsing when there is no host after an `@` (#248) +* Fix `Uri` parsing to allow more characters in query strings (#247) + # 0.1.12 (September 7, 2018) * Fix `HeaderValue` parsing to allow HTABs (#244) diff --git a/Cargo.toml b/Cargo.toml index d12abe8..09d73eb 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.12" +version = "0.1.13" 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 f3ce69a..d042e47 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/http/0.1.12")] +#![doc(html_root_url = "https://docs.rs/http/0.1.13")] //! A general purpose library of common HTTP types //!