File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
8
# 0.1.19 (October 15, 2019)
2
9
3
10
* Allow ` % ` in IPv6 addresses in ` Uri ` (#343 ).
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "http"
4
4
# - Update html_root_url in lib.rs.
5
5
# - Update CHANGELOG.md.
6
6
# - Create git tag
7
- version = " 0.1.19 "
7
+ version = " 0.1.20 "
8
8
readme = " README.md"
9
9
documentation = " https://docs.rs/http"
10
10
repository = " https://github.com/hyperium/http"
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/http/0.1.19 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/http/0.1.20 " ) ]
2
2
3
3
//! A general purpose library of common HTTP types
4
4
//!
You can’t perform that action at this time.
0 commit comments