Skip to content

Commit ce81583

Browse files
committed
v0.3.7
1 parent 4059727 commit ce81583

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.3.7 (October 22, 2021)
2+
3+
* Fix panic if server sends a malformed frame on a stream client was about to open.
4+
* Fix server to treat `:status` in a request as a stream error instead of connection error.
5+
16
# 0.3.6 (September 30, 2021)
27

38
* Fix regression of `h2::Error` that were created via `From<h2::Reason>` not returning their reason code in `Error::reason()`.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.3.6"
8+
version = "0.3.7"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",
1212
"Sean McArthur <[email protected]>",
1313
]
1414
description = "An HTTP/2.0 client and server"
15-
documentation = "https://docs.rs/h2/0.3.6"
15+
documentation = "https://docs.rs/h2"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"
1818
keywords = ["http", "async", "non-blocking"]

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

0 commit comments

Comments
 (0)