From c15b5ac8e9e6a53c0b54657077fa5dea084d5b12 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 23 Sep 2024 09:35:49 -0400 Subject: [PATCH] v0.6.1 --- tower-http/CHANGELOG.md | 8 ++++++++ tower-http/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/tower-http/CHANGELOG.md b/tower-http/CHANGELOG.md index 07b070bd..aa7c9638 100644 --- a/tower-http/CHANGELOG.md +++ b/tower-http/CHANGELOG.md @@ -5,6 +5,14 @@ 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.6.1 + +## Fixed + +- **decompression:** reuse scratch buffer to significantly reduce allocations and improve performance ([#521]) + +[#521]: https://github.com/tower-rs/tower-http/pull/521 + # 0.6.0 ## Changed: diff --git a/tower-http/Cargo.toml b/tower-http/Cargo.toml index 83d0587e..a27b44fc 100644 --- a/tower-http/Cargo.toml +++ b/tower-http/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tower-http" description = "Tower middleware and utilities for HTTP clients and servers" -version = "0.6.0" +version = "0.6.1" authors = ["Tower Maintainers "] edition = "2018" license = "MIT"