limit: Prepare `v0.1.3` release (#460)

Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
This commit is contained in:
Lucio Franco 2020-06-10 21:44:34 -04:00 committed by GitHub
parent dd423b41e1
commit 0ab48a2e6d
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.3 (June 10, 2020)
- Fixed an issue with not returning `NotReady` when the internal timer does.
# 0.1.2 (April 15, 2020)
- Fixed an issue where the remaining available requests within a period could get passed

View File

@ -8,13 +8,13 @@ name = "tower-limit"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.2"
version = "0.1.3"
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.2"
documentation = "https://docs.rs/tower-limit/0.1.3"
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.2")]
#![doc(html_root_url = "https://docs.rs/tower-limit/0.1.3")]
#![cfg_attr(test, deny(warnings))]
#![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![allow(elided_lifetimes_in_paths)]