diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee814a4c..e021bbd56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.12.10 + +- Add `ClientBuilder::connector_layer()` to allow customizing the connector stack. +- Add `ClientBuilder::http2_max_header_list_size()` option. +- Fix propagating body size hint (`content-length`) information when wrapping bodies. +- Fix decompression of chunked bodies so the connections can be reused more often. + ## v0.12.9 - Add `tls::CertificateRevocationLists` support. diff --git a/Cargo.toml b/Cargo.toml index 1a0c4abf6..1efccab06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.9" +version = "0.12.10" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]