diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index 5fda4250d..840d3745d 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.4.10 (October 19, 2021) + +- Fix accidental breaking change when using the + `rustdoc::broken_intra_doc_links` lint ([#605]) +- Clarify that tower's minimum supported rust version is 1.46 ([#605]) + +[#605]: https://github.com/tower-rs/tower/pull/605 + # 0.4.9 (October 13, 2021) - Migrate to pin-project-lite ([#595]) diff --git a/tower/Cargo.toml b/tower/Cargo.toml index 1ef95d83d..ae2def913 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -8,13 +8,13 @@ name = "tower" # - README.md # - Update CHANGELOG.md. # - Create "vX.X.X" git tag. -version = "0.4.9" +version = "0.4.10" 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/0.4.9" +documentation = "https://docs.rs/tower/0.4.10" description = """ Tower is a library of modular and reusable components for building robust clients and servers. diff --git a/tower/src/lib.rs b/tower/src/lib.rs index 68bb84186..e3c65c455 100644 --- a/tower/src/lib.rs +++ b/tower/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tower/0.4.9")] +#![doc(html_root_url = "https://docs.rs/tower/0.4.10")] #![warn( missing_debug_implementations, missing_docs,