From e3ecfaffdef704f184017b096c8be46484680c57 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 17 Jun 2022 12:30:38 -0700 Subject: [PATCH] chore: prepare to release `tower-service` v0.3.2 # Unreleased - None # 0.3.2 (June 17, 2022) ## Added - **docs**: Clarify subtlety around cloning and readiness in the `Service` docs ([#548]) - **docs**: Clarify details around shared resource consumption in `poll_ready()` ([#662]) [#548]: https://github.com/tower-rs/tower/pull/548 [#662]: https://github.com/tower-rs/tower/pull/662 --- tower-service/CHANGELOG.md | 16 +++++++++++++++- tower-service/Cargo.toml | 6 +++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/tower-service/CHANGELOG.md b/tower-service/CHANGELOG.md index 15e4b8eff..8bc4f6523 100644 --- a/tower-service/CHANGELOG.md +++ b/tower-service/CHANGELOG.md @@ -1,6 +1,20 @@ # Unreleased -- Clarify subtlety around cloning and readiness in the `Service` docs. +- None + +# 0.3.2 (June 17, 2022) + +## Added + +- **docs**: Clarify subtlety around cloning and readiness in the `Service` docs + ([#548]) +- **docs**: Clarify details around shared resource consumption in `poll_ready()` + ([#662]) + + +[#548]: https://github.com/tower-rs/tower/pull/548 +[#662]: https://github.com/tower-rs/tower/pull/662 + # 0.3.1 (November 29, 2019) diff --git a/tower-service/Cargo.toml b/tower-service/Cargo.toml index d336b00cc..695dd55ab 100644 --- a/tower-service/Cargo.toml +++ b/tower-service/Cargo.toml @@ -5,14 +5,14 @@ name = "tower-service" # - Cargo.toml # - README.md # - Update CHANGELOG.md. -# - Create "v0.2.x" git tag. -version = "0.3.1" +# - Create "v0.3.x" git tag. +version = "0.3.2" 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-service/0.3.1" +documentation = "https://docs.rs/tower-service/0.3.2" description = """ Trait representing an asynchronous, request / response based, client or server. """