From b57517521098423ea1068a8f08d76906ef8a6d11 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Mon, 23 Mar 2020 13:02:43 -0400 Subject: [PATCH] util: prepare 0.3.1 release (#428) --- tower-util/CHANGELOG.md | 10 ++++++++++ tower-util/Cargo.toml | 4 ++-- tower-util/src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/tower-util/CHANGELOG.md b/tower-util/CHANGELOG.md index d356849..2bd2913 100644 --- a/tower-util/CHANGELOG.md +++ b/tower-util/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.3.1 (March 23, 2020) + +- Adds `ReadyAnd` and `ServiceExt::ready_and`, which yield `&mut` to the + service when it is ready (#427). +- Adds `ReadyOneshot` and `ServiceExt::ready_oneshot`, which yield the + service when it is ready (#427). +- Updates `Ready` and `ServiceExt::ready` documentation to reflect that + they do not yield the service, just unit, when the service is ready + (#427). + # 0.3.0 (December 19, 2019) - Update to `tower-serivce 0.3` diff --git a/tower-util/Cargo.toml b/tower-util/Cargo.toml index c131600..6fa4a41 100644 --- a/tower-util/Cargo.toml +++ b/tower-util/Cargo.toml @@ -9,13 +9,13 @@ name = "tower-util" # - README.md # - Update CHANGELOG.md. # - Create "v0.3.x" git tag. -version = "0.3.0" +version = "0.3.1" 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-util/0.3.0-alpha.2" +documentation = "https://docs.rs/tower-util/0.3.1" description = """ Utilities for working with `Service`. """ diff --git a/tower-util/src/lib.rs b/tower-util/src/lib.rs index 60b5a69..30b505e 100644 --- a/tower-util/src/lib.rs +++ b/tower-util/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower-util/0.3.0")] +#![doc(html_root_url = "https://docs.rs/tower-util/0.3.1")] #![warn( missing_debug_implementations, missing_docs,