Skip to content

Commit 3383ef7

Browse files
hawkwseanmonstar
authored andcommitted
v0.3.12
# 0.3.12 (March 9, 2022) * Avoid time operations that can panic (#599) * Bump MSRV to Rust 1.49 (#606) * Fix header decoding error when a header name is contained at a continuation header boundary (#589) * Remove I/O type names from handshake `tracing` spans (#608)
1 parent b8eab38 commit 3383ef7

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.3.12 (March 9, 2022)
2+
3+
* Avoid time operations that can panic (#599)
4+
* Bump MSRV to Rust 1.49 (#606)
5+
* Fix header decoding error when a header name is contained at a continuation
6+
header boundary (#589)
7+
* Remove I/O type names from handshake `tracing` spans (#608)
8+
19
# 0.3.11 (January 26, 2022)
210

311
* Make `SendStream::poll_capacity` never return `Ok(Some(0))` (#596)

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

0 commit comments

Comments
 (0)