Bump version to v0.1.1 (#236)
This commit is contained in:
11
CHANGELOG.md
Normal file
11
CHANGELOG.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# 0.1.1 (March 8, 2018)
|
||||||
|
|
||||||
|
* When streams are dropped, close the connection (#222).
|
||||||
|
* Notify send tasks on connection error (#231).
|
||||||
|
* Fix bug relating to resetting connections and reaching max concurrency (#235).
|
||||||
|
* Normalize HTTP request path to satisfy HTTP/2.0 specification (#228).
|
||||||
|
* Update internal dependencies.
|
||||||
|
|
||||||
|
# 0.1.0 (Jan 12, 2018)
|
||||||
|
|
||||||
|
* Initial release
|
||||||
@@ -1,6 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "h2"
|
name = "h2"
|
||||||
version = "0.1.0" # remember to update html_root_url
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Create git tag
|
||||||
|
version = "0.1.1"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||||
description = "An HTTP/2.0 client and server"
|
description = "An HTTP/2.0 client and server"
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
//! [`Server::handshake`]: server/struct.Server.html#method.handshake
|
//! [`Server::handshake`]: server/struct.Server.html#method.handshake
|
||||||
//! [`Client::handshake`]: client/struct.Client.html#method.handshake
|
//! [`Client::handshake`]: client/struct.Client.html#method.handshake
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/h2/0.1.0")]
|
#![doc(html_root_url = "https://docs.rs/h2/0.1.1")]
|
||||||
#![deny(warnings, missing_debug_implementations, missing_docs)]
|
#![deny(warnings, missing_debug_implementations, missing_docs)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|||||||
Reference in New Issue
Block a user