limit: prepare 0.3.1 release (#430)

This commit is contained in:
Jon Gjengset 2020-03-25 19:51:59 -04:00 committed by GitHub
parent 378433fc75
commit 0f9eb648a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
# 0.3.1 (March 25, 2020)
- Implement `tower_load::Load` for `ConcurrentLimit` and `RateLimit`
(#429).
# 0.3.0 (December 19, 2019)
- Update to `futures 0.3`

View File

@ -7,14 +7,14 @@ name = "tower-limit"
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.3.0"
# - Create "v0.3.x" git tag.
version = "0.3.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.3.0"
documentation = "https://docs.rs/tower-limit/0.3.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.3.0")]
#![doc(html_root_url = "https://docs.rs/tower-limit/0.3.1")]
#![warn(
missing_debug_implementations,
missing_docs,