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)]