Bump version to v0.1.1 (#236)

This commit is contained in:
Carl Lerche
2018-03-08 10:06:40 -08:00
committed by GitHub
parent 02841ebd77
commit 70cf009305
3 changed files with 17 additions and 2 deletions

11
CHANGELOG.md Normal file
View 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

View File

@@ -1,6 +1,10 @@
[package]
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"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "An HTTP/2.0 client and server"

View File

@@ -84,7 +84,7 @@
//! [`Server::handshake`]: server/struct.Server.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)]
#[macro_use]