diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ae3ccc5a..221e7e5f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.12.9 + +- Add `tls::CertificateRevocationLists` support. +- Add crate features to enable webpki roots without selecting a rustls provider. +- Fix `connection_verbose()` to output read logs. +- Fix `multipart::Part::file()` to automatically include content-length. +- Fix proxy to internally no longer cache system proxy settings. + ## v0.12.8 - Add support for SOCKS4 proxies. diff --git a/Cargo.toml b/Cargo.toml index a2eb6b94f..9f8af88ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.8" +version = "0.12.9" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]