util: prepare 0.3.1 release (#428)

This commit is contained in:
Jon Gjengset 2020-03-23 13:02:43 -04:00 committed by GitHub
parent 52fde9767c
commit b575175210
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 3 deletions

View File

@ -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`

View File

@ -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 <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-util/0.3.0-alpha.2"
documentation = "https://docs.rs/tower-util/0.3.1"
description = """
Utilities for working with `Service`.
"""

View File

@ -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,