diff --git a/CHANGELOG.md b/CHANGELOG.md index bbace0b1e..fb6ba47ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v0.12.3 + +- Add `FromStr` for `dns::Name`. +- Add `ClientBuilder::built_in_webpki_certs(bool)` to enable them separately. +- Add `ClientBuilder::built_in_native_certs(bool)` to enable them separately. +- Fix sending `content-length: 0` for GET requests. +- Fix response body `content_length()` to return value when timeout is configured. +- Fix `ClientBuilder::resolve()` to use lowercase domain names. + ## v0.12.2 - Fix missing ALPN when connecting to socks5 proxy with rustls. diff --git a/Cargo.toml b/Cargo.toml index a21cd0fdf..95315d39d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.2" +version = "0.12.3" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]