This commit is contained in:
Sean McArthur
2021-09-21 09:46:36 -07:00
parent 0c7125fb96
commit d9ba5572bd
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -1,3 +1,10 @@
# 0.2.5 (September 21, 2021)
* Add `is_empty()` and `len()` methods to `Extensions`.
* Add `version_ref()` method to `request::Builder`.
* Implement `TryFrom<Vec<u8>>` and `TryFrom<String>` for `Authority`, `Uri`, `PathAndQuery`, and `HeaderName`.
* Make `HeaderValue::from_static` a `const fn`.
# 0.2.4 (April 4, 2021)
* Fix `Uri` parsing to allow `{`, `"`, and `}` in paths.
+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.2.4"
version = "0.2.5"
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.2.4")]
#![doc(html_root_url = "https://docs.rs/http/0.2.5")]
//! A general purpose library of common HTTP types
//!