Skip to content

Commit 012dfc6

Browse files
committed
v0.2.1
1 parent ec751f3 commit 012dfc6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.1 (December 6, 2019)
2+
3+
* Relax `Unpin` bounds on the send `Buf` generic.
4+
15
# 0.2.0 (December 3, 2019)
26

37
* Add `server::Connection::set_initial_window_size` and `client::Connection::set_initial_window_size` which can adjust the `INITIAL_WINDOW_SIZE` setting on an existing connection (#421).

Cargo.toml

Lines changed: 2 additions & 2 deletions
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.2.0"
8+
version = "0.2.1"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <me@carllerche.com>",
1212
"Sean McArthur <sean@seanmonstar.com>",
1313
]
1414
description = "An HTTP/2.0 client and server"
15-
documentation = "https://docs.rs/h2/0.2.0/h2/"
15+
documentation = "https://docs.rs/h2/0.2.1/h2/"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"
1818
keywords = ["http", "async", "non-blocking"]

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

0 commit comments

Comments
 (0)