We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2719a commit d46b71eCopy full SHA for d46b71e
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# 0.2.8 (June 6, 2022)
2
+
3
+* Fix internal usage of uninitialized memory to use `MaybeUninit` inside `HeaderName`.
4
5
# 0.2.7 (April 28, 2022)
6
7
* MSRV bumped to `1.49`.
Cargo.toml
@@ -4,7 +4,7 @@ name = "http"
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
-version = "0.2.7"
+version = "0.2.8"
8
readme = "README.md"
9
documentation = "https://docs.rs/http"
10
repository = "https://github.com/hyperium/http"
src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/http/0.2.7")]
+#![doc(html_root_url = "https://docs.rs/http/0.2.8")]
//! A general purpose library of common HTTP types
//!
0 commit comments