File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 0.3.4 (August 20, 2021)
2+
3+ * Fix panic when encoding header size update over a certain size.
4+ * Fix ` SendRequest ` to wake up connection when dropped.
5+ * Fix potential hang if ` RecvStream ` is placed in the request or response ` extensions ` .
6+ * Stop calling ` Instant::now ` if zero reset streams are configured.
7+
18# 0.3.3 (April 29, 2021)
29
310* Fix client being able to make ` CONNECT ` requests without a ` :path ` .
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ name = "h2"
55# - html_root_url.
66# - Update CHANGELOG.md.
77# - Create git tag
8- version = " 0.3.3 "
8+ version = " 0.3.4 "
99license = " MIT"
1010authors = [
1111 " Carl Lerche <me@carllerche.com>" ,
1212 " Sean McArthur <sean@seanmonstar.com>" ,
1313]
1414description = " An HTTP/2.0 client and server"
15- documentation = " https://docs.rs/h2/0.3.3 "
15+ documentation = " https://docs.rs/h2/0.3.4 "
1616repository = " https://github.com/hyperium/h2"
1717readme = " README.md"
1818keywords = [" http" , " async" , " non-blocking" ]
Original file line number Diff line number Diff line change 7878//! [`server::handshake`]: server/fn.handshake.html
7979//! [`client::handshake`]: client/fn.handshake.html
8080
81- #![ doc( html_root_url = "https://docs.rs/h2/0.3.3 " ) ]
81+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.4 " ) ]
8282#![ deny( missing_debug_implementations, missing_docs) ]
8383#![ cfg_attr( test, deny( warnings) ) ]
8484
You can’t perform that action at this time.
0 commit comments