Skip to content

Commit b9dcd39

Browse files
committed
v0.3.16
1 parent 96caf4f commit b9dcd39

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
# 0.3.15 (October 21, 2022)
210

311
* Remove `B: Buf` bound on `SendStream`'s parameter

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.3.15"
8+
version = "0.3.16"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",

Diff for: src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
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.15")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.16")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484
#![allow(clippy::type_complexity, clippy::manual_range_contains)]

0 commit comments

Comments
 (0)