From 3383ef71e2dabe27fe979e8b2c82b61b51eca9f5 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 9 Mar 2022 09:22:49 -0800 Subject: [PATCH] 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) --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdc622d7..7cff904f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 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) + # 0.3.11 (January 26, 2022) * Make `SendStream::poll_capacity` never return `Ok(Some(0))` (#596) diff --git a/Cargo.toml b/Cargo.toml index cf9d3e43..f7d06bf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "h2" # - html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.3.11" +version = "0.3.12" license = "MIT" authors = [ "Carl Lerche ", diff --git a/src/lib.rs b/src/lib.rs index e9e25e3f..925b10c9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -78,7 +78,7 @@ //! [`server::handshake`]: server/fn.handshake.html //! [`client::handshake`]: client/fn.handshake.html -#![doc(html_root_url = "https://docs.rs/h2/0.3.11")] +#![doc(html_root_url = "https://docs.rs/h2/0.3.12")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]