Bump version to v0.1.13 (#324)
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.1.13 (October 16, 2018)
|
||||||
|
|
||||||
|
* Add client support for Push Promises (#314).
|
||||||
|
* Expose `io::Error` from `h2::Error` (#311)
|
||||||
|
* Misc bug fixes (#304, #309, #319, #313, #320).
|
||||||
|
|
||||||
# 0.1.12 (August 8, 2018)
|
# 0.1.12 (August 8, 2018)
|
||||||
|
|
||||||
* Fix initial send window size (#301).
|
* Fix initial send window size (#301).
|
||||||
|
|||||||
10
Cargo.toml
10
Cargo.toml
@@ -1,14 +1,18 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "h2"
|
name = "h2"
|
||||||
# When releasing to crates.io:
|
# When releasing to crates.io:
|
||||||
# - Update html_root_url.
|
# - Deploy docs.
|
||||||
|
# - Update doc URL.
|
||||||
|
# - Cargo.toml
|
||||||
|
# - README
|
||||||
|
# - html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create git tag
|
# - Create git tag
|
||||||
version = "0.1.12"
|
version = "0.1.13"
|
||||||
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"
|
||||||
documentation = "https://docs.rs/h2"
|
documentation = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2"
|
||||||
homepage = "https://github.com/carllerche/h2"
|
homepage = "https://github.com/carllerche/h2"
|
||||||
repository = "https://github.com/carllerche/h2"
|
repository = "https://github.com/carllerche/h2"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ A Tokio aware, HTTP/2.0 client & server implementation for Rust.
|
|||||||
|
|
||||||
More information about this crate can be found in the [crate documentation][dox].
|
More information about this crate can be found in the [crate documentation][dox].
|
||||||
|
|
||||||
[dox]: https://docs.rs/h2
|
[dox]: http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2/
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
//! [`server::handshake`]: server/fn.handshake.html
|
//! [`server::handshake`]: server/fn.handshake.html
|
||||||
//! [`client::handshake`]: client/fn.handshake.html
|
//! [`client::handshake`]: client/fn.handshake.html
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/h2/0.1.12")]
|
#![doc(html_root_url = "http://rust-doc.s3-website-us-east-1.amazonaws.com/h2/v0.1.13/h2")]
|
||||||
#![deny(missing_debug_implementations, missing_docs)]
|
#![deny(missing_debug_implementations, missing_docs)]
|
||||||
#![cfg_attr(test, deny(warnings))]
|
#![cfg_attr(test, deny(warnings))]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user