Skip to content

Commit 62e0902

Browse files
authored
tower: prepare to release 0.4.9 (#602)
- Migrate to pin-project-lite ([#595]) - **builder**: Implement `Layer` for `ServiceBuilder` ([#600]) - **builder**: Add `ServiceBuilder::and_then` analogous to `ServiceExt::and_then` ([#601]) [#600]: #600 [#601]: #601 [#595]: #595 [pin-project-lite]: https://crates.io/crates/pin-project-lite
1 parent c4cb3b0 commit 62e0902

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

tower/CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10-
- **builder**: Implement `Layer` for `ServiceBuilder`.
10+
- None.
11+
12+
# 0.4.9 (October 13, 2021)
13+
14+
- Migrate to pin-project-lite ([#595])
15+
- **builder**: Implement `Layer` for `ServiceBuilder` ([#600])
1116
- **builder**: Add `ServiceBuilder::and_then` analogous to
12-
`ServiceExt::and_then`
17+
`ServiceExt::and_then` ([#601])
18+
19+
[#600]: https://github.com/tower-rs/tower/pull/600
20+
[#601]: https://github.com/tower-rs/tower/pull/601
21+
[#595]: https://github.com/tower-rs/tower/pull/595
22+
[pin-project-lite]: https://crates.io/crates/pin-project-lite
1323

1424
# 0.4.8 (May 28, 2021)
1525

tower/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ name = "tower"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "vX.X.X" git tag.
11-
version = "0.4.8"
11+
version = "0.4.9"
1212
authors = ["Tower Maintainers <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"
1515
repository = "https://github.com/tower-rs/tower"
1616
homepage = "https://github.com/tower-rs/tower"
17-
documentation = "https://docs.rs/tower/0.4.8"
17+
documentation = "https://docs.rs/tower/0.4.9"
1818
description = """
1919
Tower is a library of modular and reusable components for building robust
2020
clients and servers.

tower/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tower/0.4.8")]
1+
#![doc(html_root_url = "https://docs.rs/tower/0.4.9")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,

0 commit comments

Comments
 (0)