From 0ab48a2e6db55fabaa95370f304fbc0caf0616a6 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 10 Jun 2020 21:44:34 -0400 Subject: [PATCH] limit: Prepare `v0.1.3` release (#460) Signed-off-by: Lucio Franco --- tower-limit/CHANGELOG.md | 4 ++++ tower-limit/Cargo.toml | 4 ++-- tower-limit/src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/tower-limit/CHANGELOG.md b/tower-limit/CHANGELOG.md index f6e3cad..b86edf4 100644 --- a/tower-limit/CHANGELOG.md +++ b/tower-limit/CHANGELOG.md @@ -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 diff --git a/tower-limit/Cargo.toml b/tower-limit/Cargo.toml index 3e366c8..5ba386e 100644 --- a/tower-limit/Cargo.toml +++ b/tower-limit/Cargo.toml @@ -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 "] 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`. """ diff --git a/tower-limit/src/lib.rs b/tower-limit/src/lib.rs index aeba251..f36296b 100644 --- a/tower-limit/src/lib.rs +++ b/tower-limit/src/lib.rs @@ -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)]