From e0ea15bd659561b236e8e507a0f704dca7091e1f Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 22 Mar 2024 09:57:50 -0400 Subject: [PATCH] v0.12.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e8fa47e2..243c383fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.12.1 + +- Fix `ClientBuilder::interface()` when no TLS is enabled. +- Fix `TlsInfo::peer_certificate()` being truncated with rustls. +- Fix panic if `http2` feature disabled but TLS negotiated h2 in ALPN. +- Fix `Display` for `Error` to not include its source error. + # v0.12.0 - Upgrade to `hyper`, `http`, and `http-body` v1. diff --git a/Cargo.toml b/Cargo.toml index 859a3c92c..133708413 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.12.0" +version = "0.12.1" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]