From ba1fdd755b986ba341e80b008030920c677aef3d Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Mon, 24 Feb 2020 13:09:08 -0500 Subject: [PATCH] ready-cache: Prepare for 0.3.1 release This also fixes up the various documentation URLs, which were still pointing to 0.1.x. --- tower-ready-cache/CHANGELOG.md | 5 +++++ tower-ready-cache/Cargo.toml | 4 ++-- tower-ready-cache/src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 tower-ready-cache/CHANGELOG.md diff --git a/tower-ready-cache/CHANGELOG.md b/tower-ready-cache/CHANGELOG.md new file mode 100644 index 0000000..f5427f4 --- /dev/null +++ b/tower-ready-cache/CHANGELOG.md @@ -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. diff --git a/tower-ready-cache/Cargo.toml b/tower-ready-cache/Cargo.toml index 80936b5..533cf41 100644 --- a/tower-ready-cache/Cargo.toml +++ b/tower-ready-cache/Cargo.toml @@ -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 "] 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 """ diff --git a/tower-ready-cache/src/lib.rs b/tower-ready-cache/src/lib.rs index 58e10a2..dec2a81 100644 --- a/tower-ready-cache/src/lib.rs +++ b/tower-ready-cache/src/lib.rs @@ -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)]