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"]