File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 0.3.16 (February 27, 2023)
2
+
3
+ * Set ` Protocol ` extension on requests when received Extended CONNECT requests.
4
+ * Remove ` B: Unpin + 'static ` bound requiremented of bufs
5
+ * Fix releasing of frames when stream is finished, reducing memory usage.
6
+ * Fix panic when trying to send data and connection window is available, but stream window is not.
7
+ * Fix spurious wakeups when stream capacity is not available.
8
+
1
9
# 0.3.15 (October 21, 2022)
2
10
3
11
* Remove ` B: Buf ` bound on ` SendStream ` 's parameter
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name = "h2"
5
5
# - html_root_url.
6
6
# - Update CHANGELOG.md.
7
7
# - Create git tag
8
- version = " 0.3.15 "
8
+ version = " 0.3.16 "
9
9
license = " MIT"
10
10
authors = [
11
11
" Carl Lerche <[email protected] >" ,
Original file line number Diff line number Diff line change 78
78
//! [`server::handshake`]: server/fn.handshake.html
79
79
//! [`client::handshake`]: client/fn.handshake.html
80
80
81
- #![ doc( html_root_url = "https://docs.rs/h2/0.3.15 " ) ]
81
+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.16 " ) ]
82
82
#![ deny( missing_debug_implementations, missing_docs) ]
83
83
#![ cfg_attr( test, deny( warnings) ) ]
84
84
#![ allow( clippy:: type_complexity, clippy:: manual_range_contains) ]
You can’t perform that action at this time.
0 commit comments