From 61adb3570e8669e3db827121da285b558322ddf1 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 5 Dec 2018 09:54:33 -0800 Subject: [PATCH] v0.1.14 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 7 ++----- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 850aa40..b93caf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.14 (December 5, 2018) + +* Fix closed streams to always return window capacity to the connection (#334). +* Fix locking when `Debug` printing an `OpaqueStreamRef` (#333). +* Fix inverted split for DATA frame padding (#330). +* Reduce `Debug` noise for `Frame` (#329). + # 0.1.13 (October 16, 2018) * Add client support for Push Promises (#314). diff --git a/Cargo.toml b/Cargo.toml index cc38634..993b223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,15 @@ [package] name = "h2" # When releasing to crates.io: -# - Deploy docs. # - Update doc URL. -# - Cargo.toml -# - README # - html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.13" +version = "0.1.14" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" -documentation = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2" +documentation = "https://docs.rs/h2" homepage = "https://github.com/carllerche/h2" repository = "https://github.com/carllerche/h2" readme = "README.md" diff --git a/README.md b/README.md index d48b75f..d12edee 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ A Tokio aware, HTTP/2.0 client & server implementation for Rust. [![Build Status](https://travis-ci.org/carllerche/h2.svg?branch=master)](https://travis-ci.org/carllerche/h2) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) -[![Crates.io](https://img.shields.io/crates/v/h2.svg?maxAge=2592000)](https://crates.io/crates/h2) +[![Crates.io](https://img.shields.io/crates/v/h2.svg)](https://crates.io/crates/h2) [![Documentation](https://docs.rs/h2/badge.svg)][dox] More information about this crate can be found in the [crate documentation][dox]. -[dox]: http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2/ +[dox]: https://docs.rs/h2 ## Features diff --git a/src/lib.rs b/src/lib.rs index 55c1885..c8b1d6d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`server::handshake`]: server/fn.handshake.html //! [`client::handshake`]: client/fn.handshake.html -#![doc(html_root_url = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2")] +#![doc(html_root_url = "https://docs.rs/h2/0.1.14")] #![deny(missing_debug_implementations, missing_docs)] #![cfg_attr(test, deny(warnings))]