From 29d4cff234b37065632512f002b9785700c51aa8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 17 Jun 2024 11:14:12 -0400 Subject: [PATCH] v0.12.5 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dea63e5a..428f37073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v0.12.5 + +- Add `blocking::ClientBuilder::dns_resolver()` method to change DNS resolver in blocking client. +- Add `http3` feature back, still requiring `reqwest_unstable`. +- Add `rustls-tls-no-provider` Cargo feature to use rustls without a crypto provider. +- Fix `Accept-Encoding` header combinations. +- Fix http3 resolving IPv6 addresses. +- Internal: upgrade to rustls 0.23. + ## v0.12.4 - Add `zstd` support, enabled with `zstd` Cargo feature. diff --git a/Cargo.toml b/Cargo.toml index 2c019cc30..7f81cb9ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.4" +version = "0.12.5" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]