Skip to content

Commit

Permalink
tower: prepare to release v0.4.4 (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Jan 20, 2021
1 parent 2683ab6 commit 886f72a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
20 changes: 15 additions & 5 deletions tower/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tower/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 886f72a

Please sign in to comment.