tower: prepare to release v0.4.4 (#539)

This commit is contained in:
David Pedersen 2021-01-20 16:21:57 +01:00 committed by GitHub
parent 2683ab6231
commit 886f72a53e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 8 deletions

View File

@ -6,14 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
# 0.4.4 (January 20, 2021)
### Added
- **util**: Implement `Layer` for `Either<A, B>`.
- **util**: Implement `Clone` for `FilterLayer`.
- **timeout**: Implement `Clone` for `TimeoutLayer`.
- **limit**: Implement `Clone` for `RateLimitLayer`.
- **util**: Implement `Layer` for `Either<A, B>`. ([#531])
- **util**: Implement `Clone` for `FilterLayer`. ([#535])
- **timeout**: Implement `Clone` for `TimeoutLayer`. ([#535])
- **limit**: Implement `Clone` for `RateLimitLayer`. ([#535])
### Fixed
- Added "full" feature which turns on all other features.
- Added "full" feature which turns on all other features. ([#532])
- **spawn-ready**: Avoid oneshot allocations. ([#538])
[#531]: https://github.com/tower-rs/tower/pull/531
[#532]: https://github.com/tower-rs/tower/pull/532
[#535]: https://github.com/tower-rs/tower/pull/535
[#538]: https://github.com/tower-rs/tower/pull/538
# 0.4.3 (January 13, 2021)

View File

@ -8,13 +8,13 @@ name = "tower"
# - README.md
# - Update CHANGELOG.md.
# - Create "vX.X.X" git tag.
version = "0.4.3"
version = "0.4.4"
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/0.4.3"
documentation = "https://docs.rs/tower/0.4.4"
description = """
Tower is a library of modular and reusable components for building robust
clients and servers.

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tower/0.4.3")]
#![doc(html_root_url = "https://docs.rs/tower/0.4.4")]
#![warn(
missing_debug_implementations,
missing_docs,