Skip to content

Commit 3789c0c

Browse files
authored
v0.6.2
1 parent d1e4731 commit 3789c0c

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

tower-http/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.6.2
9+
10+
## Changed:
11+
12+
- `CompressionBody<B>` now propagates `B`'s size hint in its `http_body::Body`
13+
implementation, if compression is disabled ([#531])
14+
- this allows a `content-length` to be included in an HTTP message with this
15+
body for those cases
16+
17+
[#531]: https://github.com/tower-rs/tower-http/pull/531
18+
819
# 0.6.1
920

1021
## Fixed

tower-http/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tower-http"
33
description = "Tower middleware and utilities for HTTP clients and servers"
4-
version = "0.6.1"
4+
version = "0.6.2"
55
authors = ["Tower Maintainers <team@tower-rs.com>"]
66
edition = "2018"
77
license = "MIT"
@@ -132,6 +132,7 @@ allowed = [
132132
"http",
133133
"http_body",
134134
"mime",
135+
"pin-project-lite",
135136
"tokio",
136137
"tower",
137138
"tower_layer",

0 commit comments

Comments
 (0)