ready-cache: Prepare for 0.3.1 release

This also fixes up the various documentation URLs, which were still
pointing to 0.1.x.
This commit is contained in:
Jon Gjengset 2020-02-24 13:09:08 -05:00
parent 414e3b0809
commit ba1fdd755b
3 changed files with 8 additions and 3 deletions

View File

@ -0,0 +1,5 @@
# 0.3.1 (February 24, 2020)
- Fix spurious panic (#420).
- Restore assertion from pre-`std::future::Future` (#418).
- Fix documentation URLs to point to 0.3.

View File

@ -8,13 +8,13 @@ name = "tower-ready-cache"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.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-ready-cache/0.1.0"
documentation = "https://docs.rs/tower-ready-cache/0.3.1"
description = """
Caches a set of services
"""

View File

@ -1,6 +1,6 @@
//! A cache of services
#![doc(html_root_url = "https://docs.rs/tower-ready-cache/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tower-ready-cache/0.3.1")]
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]
#![allow(elided_lifetimes_in_paths)]