This commit is contained in:
Sean McArthur
2018-09-14 10:45:14 -07:00
parent b74b3d9c69
commit fc32835c53
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -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)
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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
//!