diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9df7080 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index b13c85a..af45ec9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] description = "An HTTP/2.0 client and server" diff --git a/src/lib.rs b/src/lib.rs index 2efb465..4569d78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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]