From 6a74cd01bf4142d450da6c8d53ffb71920a86eb2 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 21 Aug 2024 19:26:40 +0200 Subject: [PATCH 1/2] Don't explicitly set documentation URL crates.io automatically links to docs.rs. --- tower/Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tower/Cargo.toml b/tower/Cargo.toml index 869f1ec77..a62cd94e7 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -1,9 +1,7 @@ [package] name = "tower" # When releasing to crates.io: -# - Update doc url -# - Cargo.toml -# - README.md +# - Update README.md # - Update CHANGELOG.md. # - Create "vX.X.X" git tag. version = "0.5.0" @@ -12,7 +10,6 @@ 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.5.0" description = """ Tower is a library of modular and reusable components for building robust clients and servers. From d249878041d535b1af7ae70cd703869eca6e3560 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 21 Aug 2024 19:28:57 +0200 Subject: [PATCH 2/2] Prepare release of v0.5.1 --- tower/CHANGELOG.md | 6 ++++++ tower/Cargo.toml | 2 +- tower/README.md | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index d2777a3fb..bee0a86c6 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 0.5.1 + +- Fix minimum version of `tower-layer` dependency ([#787]) + +[#787]: https://github.com/tower-rs/tower/pull/787 + # 0.5.0 ### Fixed diff --git a/tower/Cargo.toml b/tower/Cargo.toml index a62cd94e7..6e810b3cb 100644 --- a/tower/Cargo.toml +++ b/tower/Cargo.toml @@ -4,7 +4,7 @@ name = "tower" # - Update README.md # - Update CHANGELOG.md. # - Create "vX.X.X" git tag. -version = "0.5.0" +version = "0.5.1" authors = ["Tower Maintainers "] license = "MIT" readme = "README.md" diff --git a/tower/README.md b/tower/README.md index da222df90..fa9e208d6 100644 --- a/tower/README.md +++ b/tower/README.md @@ -141,14 +141,14 @@ To get started using all of Tower's optional middleware, add this to your `Cargo.toml`: ```toml -tower = { version = "0.5.0", features = ["full"] } +tower = { version = "0.5.1", features = ["full"] } ``` Alternatively, you can only enable some features. For example, to enable only the [`retry`] and [`timeout`][timeouts] middleware, write: ```toml -tower = { version = "0.5.0", features = ["retry", "timeout"] } +tower = { version = "0.5.1", features = ["retry", "timeout"] } ``` See [here][all_layers] for a complete list of all middleware provided by