chore: prepare to release tower-layer v0.3.2 (#699)

This commit is contained in:
David Pedersen 2022-10-10 20:27:58 +02:00 committed by GitHub
parent 66010c1443
commit 8b84b98d93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,10 @@
# 0.3.1 (January 7, 2021) # 0.3.2 (October 7, 2022)
### Added - Implement `Layer` for tuples of up to 16 elements ([#694])
[#694]: https://github.com/tower-rs/tower/pull/694
# 0.3.1 (January 7, 2021)
- Added `layer_fn`, for constructing a `Layer` from a function taking - Added `layer_fn`, for constructing a `Layer` from a function taking
a `Service` and returning a different `Service` ([#491]) a `Service` and returning a different `Service` ([#491])

View File

@ -6,13 +6,12 @@ name = "tower-layer"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag. # - Create "v0.1.x" git tag.
version = "0.3.1" version = "0.3.2"
authors = ["Tower Maintainers <team@tower-rs.com>"] authors = ["Tower Maintainers <team@tower-rs.com>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
repository = "https://github.com/tower-rs/tower" repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower" homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower-layer/0.3.0-alpha.2"
description = """ description = """
Decorates a `Service` to allow easy composition between `Service`s. Decorates a `Service` to allow easy composition between `Service`s.
""" """