From 0720159f6369f54e045a1fd315e0f24b7a0b4a39 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 5 Apr 2024 10:27:54 -0400 Subject: [PATCH] v0.12.3 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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"]