Prep buffer and tower release (#305)

* Prep buffer 0.1.1 release

* Prep release for tower 0.1.1
This commit is contained in:
Lucio Franco 2019-07-19 14:21:07 -04:00 committed by GitHub
parent 40fbb85c4b
commit 72219ce862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,7 @@
# 0.1.1 (July 19, 2019)
- Add `tracing` support
# 0.1.0 (April 26, 2019)
- Initial release

View File

@ -8,13 +8,13 @@ name = "tower-buffer"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
version = "0.1.1"
authors = ["Tower Maintainers <team@tower-rs.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower-buffer/0.1.0"
documentation = "https://docs.rs/tower-buffer/0.1.1"
description = """
Buffer requests before dispatching to a `Service`.
"""

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tower-buffer/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tower-buffer/0.1.1")]
#![deny(rust_2018_idioms)]
#![allow(elided_lifetimes_in_paths)]

View File

@ -1,3 +1,7 @@
# 0.1.1 (July 19, 2019)
- Add `ServiceBuilder::into_inner`
# 0.1.0 (April 26, 2019)
- Initial release

View File

@ -8,13 +8,13 @@ name = "tower"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
version = "0.1.1"
authors = ["Tower Maintainers <team@tower-rs.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower/0.1.0"
documentation = "https://docs.rs/tower/0.1.1"
description = """
Tower is a library of modular and reusable components for building robust
clients and servers.

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tower/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tower/0.1.1")]
// Allows refining features in the future without breaking backwards
// compatibility
#![cfg(feature = "full")]