From 7657e412b10dc3e5916e7b1fbf376be689b4c4b4 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 13 Oct 2021 11:01:19 +0200 Subject: [PATCH] tower: prepare to release 0.4.9 - Migrate to pin-project-lite ([#595]) - **builder**: Implement `Layer` for `ServiceBuilder` ([#600]) - **builder**: Add `ServiceBuilder::and_then` analogous to `ServiceExt::and_then` ([#601]) [#600]: https://github.com/tower-rs/tower/pull/600 [#601]: https://github.com/tower-rs/tower/pull/601 [#595]: https://github.com/tower-rs/tower/pull/595 [pin-project-lite]: https://crates.io/crates/pin-project-lite --- tower/CHANGELOG.md | 14 ++++++++++++-- tower/Cargo.toml | 4 ++-- tower/src/lib.rs | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index 2d97194e2..5fda4250d 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -7,9 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -- **builder**: Implement `Layer` for `ServiceBuilder`. +- None. + +# 0.4.9 (October 13, 2021) + +- Migrate to pin-project-lite ([#595]) +- **builder**: Implement `Layer` for `ServiceBuilder` ([#600]) - **builder**: Add `ServiceBuilder::and_then` analogous to - `ServiceExt::and_then` + `ServiceExt::and_then` ([#601]) + +[#600]: https://github.com/tower-rs/tower/pull/600 +[#601]: https://github.com/tower-rs/tower/pull/601 +[#595]: https://github.com/tower-rs/tower/pull/595 +[pin-project-lite]: https://crates.io/crates/pin-project-lite # 0.4.8 (May 28, 2021) diff --git a/tower/Cargo.toml b/tower/Cargo.toml index a1c2f25ac..b9e9da818 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.8" +version = "0.4.9" 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.8" +documentation = "https://docs.rs/tower/0.4.9" 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 458e4f585..61ce3ac9b 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.8")] +#![doc(html_root_url = "https://docs.rs/tower/0.4.9")] #![warn( missing_debug_implementations, missing_docs,