From 886f72a53eaa6e4b78db3bc7ce86583ad1139999 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 20 Jan 2021 16:21:57 +0100 Subject: [PATCH] tower: prepare to release v0.4.4 (#539) --- tower/CHANGELOG.md | 20 +++++++++++++++----- tower/Cargo.toml | 4 ++-- tower/src/lib.rs | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index 2068ab4b..98bd9fe8 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -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`. -- **util**: Implement `Clone` for `FilterLayer`. -- **timeout**: Implement `Clone` for `TimeoutLayer`. -- **limit**: Implement `Clone` for `RateLimitLayer`. + +- **util**: Implement `Layer` for `Either`. ([#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) diff --git a/tower/Cargo.toml b/tower/Cargo.toml index d796b9db..1711d6ed 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -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 "] 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. diff --git a/tower/src/lib.rs b/tower/src/lib.rs index efed45df..7510637d 100644 --- a/tower/src/lib.rs +++ b/tower/src/lib.rs @@ -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,