Skip to content

Commit 6a75f23

Browse files
committed
v0.3.20
1 parent 0189722 commit 6a75f23

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.3.20 (June 26, 2023)
2+
3+
* Fix panic if a server received a request with a `:status` pseudo header in the 1xx range.
4+
* Fix panic if a reset stream had pending push promises that were more than allowed.
5+
* Fix potential flow control overflow by subtraction, instead returning a connection error.
6+
17
# 0.3.19 (May 12, 2023)
28

39
* Fix counting reset streams when triggered by a GOAWAY.

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.19"
8+
version = "0.3.20"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",

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.19")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.20")]
8282
#![deny(
8383
missing_debug_implementations,
8484
missing_docs,

0 commit comments

Comments
 (0)