Skip to content

Commit 7a5b574

Browse files
committed
v0.3.1
1 parent 1122970 commit 7a5b574

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.3.1 (February 26, 2021)
2+
3+
* Add `Connection::max_concurrent_recv_streams()` getter.
4+
* Add `Connection::max_concurrent_send_streams()` getter.
5+
* Fix client to ignore receipt of 1xx headers frames.
6+
* Fix incorrect calculation of pseudo header lengths when determining if a received header is too big.
7+
* Reduce monomorphized code size of internal code.
8+
19
# 0.3.0 (December 23, 2020)
210

311
* Update to Tokio v1 and Bytes v1.

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0"
8+
version = "0.3.1"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! ```toml
1313
//! [dependencies]
14-
//! h2 = "0.2"
14+
//! h2 = "0.3"
1515
//! ```
1616
//!
1717
//! # Layout
@@ -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.0")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.1")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484

0 commit comments

Comments
 (0)