Skip to content

Commit 4a5b64d

Browse files
committed
v0.1.20
1 parent 6b07ee4 commit 4a5b64d

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.1.20 (November 26, 2019)
2+
3+
* Fix possible double-free if `header::Drain` iterator is `std::mem::forgot`en (#357).
4+
* Fix possible data race if multiple `header::ValueDrain`s are iterated on different threads (#362).
5+
* Fix `HeaderMap::reserve` capacity overflows (#360).
6+
* Fix parsing long authority-form `Uri`s (#351).
7+
18
# 0.1.19 (October 15, 2019)
29

310
* Allow `%` in IPv6 addresses in `Uri` (#343).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "http"
44
# - Update html_root_url in lib.rs.
55
# - Update CHANGELOG.md.
66
# - Create git tag
7-
version = "0.1.19"
7+
version = "0.1.20"
88
readme = "README.md"
99
documentation = "https://docs.rs/http"
1010
repository = "https://github.com/hyperium/http"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/http/0.1.19")]
1+
#![doc(html_root_url = "https://docs.rs/http/0.1.20")]
22

33
//! A general purpose library of common HTTP types
44
//!

0 commit comments

Comments
 (0)