mirror of
https://github.com/tower-rs/tower.git
synced 2025-11-17 05:47:12 +00:00
limit: prepare 0.3.1 release (#430)
This commit is contained in:
parent
378433fc75
commit
0f9eb648a5
@ -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)
|
# 0.3.0 (December 19, 2019)
|
||||||
|
|
||||||
- Update to `futures 0.3`
|
- Update to `futures 0.3`
|
||||||
|
|||||||
@ -7,14 +7,14 @@ name = "tower-limit"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.3.x" git tag.
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["Tower Maintainers <team@tower-rs.com>"]
|
authors = ["Tower Maintainers <team@tower-rs.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tower-rs/tower"
|
repository = "https://github.com/tower-rs/tower"
|
||||||
homepage = "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 = """
|
description = """
|
||||||
Limit maximum request rate to a `Service`.
|
Limit maximum request rate to a `Service`.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@ -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(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user