mirror of
https://github.com/tower-rs/tower.git
synced 2025-10-02 07:20:52 +00:00
tower: prepare to release v0.4.4 (#539)
This commit is contained in:
parent
2683ab6231
commit
886f72a53e
@ -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)
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user