Prepare limit 0.1.1 release (#359)

This commit is contained in:
Lucio Franco 2019-10-11 11:22:14 -04:00 committed by GitHub
parent b86d7fb6e4
commit 30f11bfaa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# 0.1.1 (October 11, 2019)
- Added `tracing` events for when requests are limited
# 0.1.0 (April 26, 2019)
- Initial release

View File

@ -8,13 +8,13 @@ name = "tower-limit"
# - 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-limit/0.1.0"
documentation = "https://docs.rs/tower-limit/0.1.1"
description = """
Limit maximum request rate to a `Service`.
"""

View File

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