diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e6ecd9d4..0ae3ccc5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.12.8 + +- Add support for SOCKS4 proxies. +- Add `multipart::Form::file()` method for adding files easily. +- Add `Body::wrap()` to wrap any `http_body::Body` type. +- Fix the pool configuration to use a timer to remove expired connections. + + ## v0.12.7 - Revert adding `impl Service>` for `Client`. diff --git a/Cargo.toml b/Cargo.toml index 6d3667e52..e38e68a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.7" +version = "0.12.8" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]