From 7dc533ef86b02f89f3dc5fe64644dd1a5dc3b37d Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 10 Dec 2024 16:24:00 -0500 Subject: [PATCH] tower v0.5.2 --- tower/CHANGELOG.md | 9 +++++++++ tower/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/tower/CHANGELOG.md b/tower/CHANGELOG.md index bee0a86c6..fe82bfb56 100644 --- a/tower/CHANGELOG.md +++ b/tower/CHANGELOG.md @@ -5,8 +5,17 @@ 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.2 + +### Added + +- **util**: Add `BoxCloneSyncService` which is a `Clone + Send + Sync` boxed `Service` ([#777]) +- **util**: Add `BoxCloneSyncServiceLayer` which is a `Clone + Send + Sync` boxed `Layer` ([802]) + # 0.5.1 +### Fixed + - Fix minimum version of `tower-layer` dependency ([#787]) [#787]: https://github.com/tower-rs/tower/pull/787 diff --git a/tower/Cargo.toml b/tower/Cargo.toml index 6e810b3cb..a04e182a4 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.1" +version = "0.5.2" authors = ["Tower Maintainers "] license = "MIT" readme = "README.md"