File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1+ # 0.3.1 (February 26, 2021)
2+
3+ * Add ` Connection::max_concurrent_recv_streams() ` getter.
4+ * Add ` Connection::max_concurrent_send_streams() ` getter.
5+ * Fix client to ignore receipt of 1xx headers frames.
6+ * Fix incorrect calculation of pseudo header lengths when determining if a received header is too big.
7+ * Reduce monomorphized code size of internal code.
8+
19# 0.3.0 (December 23, 2020)
210
311* Update to Tokio v1 and Bytes v1.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name = "h2"
55# - html_root_url.
66# - Update CHANGELOG.md.
77# - Create git tag
8- version = " 0.3.0 "
8+ version = " 0.3.1 "
99license = " MIT"
1010authors = [
1111 " Carl Lerche <[email protected] >" ,
Original file line number Diff line number Diff line change 1111//!
1212//! ```toml
1313//! [dependencies]
14- //! h2 = "0.2 "
14+ //! h2 = "0.3 "
1515//! ```
1616//!
1717//! # Layout
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.0 " ) ]
81+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.1 " ) ]
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