Skip to content

Commit 7155101

Browse files
authored
Prepare release of v0.5.1 (#791)
1 parent b2c48b4 commit 7155101

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

tower/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# 0.5.1
9+
10+
- Fix minimum version of `tower-layer` dependency ([#787])
11+
12+
[#787]: https://github.com/tower-rs/tower/pull/787
13+
814
# 0.5.0
915

1016
### Fixed

tower/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
[package]
22
name = "tower"
33
# When releasing to crates.io:
4-
# - Update doc url
5-
# - Cargo.toml
6-
# - README.md
4+
# - Update README.md
75
# - Update CHANGELOG.md.
86
# - Create "vX.X.X" git tag.
9-
version = "0.5.0"
7+
version = "0.5.1"
108
authors = ["Tower Maintainers <[email protected]>"]
119
license = "MIT"
1210
readme = "README.md"
1311
repository = "https://github.com/tower-rs/tower"
1412
homepage = "https://github.com/tower-rs/tower"
15-
documentation = "https://docs.rs/tower/0.5.0"
1613
description = """
1714
Tower is a library of modular and reusable components for building robust
1815
clients and servers.

tower/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ To get started using all of Tower's optional middleware, add this to your
141141
`Cargo.toml`:
142142

143143
```toml
144-
tower = { version = "0.5.0", features = ["full"] }
144+
tower = { version = "0.5.1", features = ["full"] }
145145
```
146146

147147
Alternatively, you can only enable some features. For example, to enable
148148
only the [`retry`] and [`timeout`][timeouts] middleware, write:
149149

150150
```toml
151-
tower = { version = "0.5.0", features = ["retry", "timeout"] }
151+
tower = { version = "0.5.1", features = ["retry", "timeout"] }
152152
```
153153

154154
See [here][all_layers] for a complete list of all middleware provided by

0 commit comments

Comments
 (0)