diff --git a/CHANGELOG.md b/CHANGELOG.md index c8f4c46ca..c3fcf9c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.11.24 + +- Add `Certificate::from_pem_bundle()` to add a bundle. +- Add `http3_prior_knowledge()` to blocking client builder. +- Remove `Sync` bounds requirement for `Body::wrap_stream()`. +- Fix HTTP/2 to retry `REFUSED_STREAM` requests. +- Fix instances of converting `Url` to `Uri` that could panic. + ## v0.11.23 - Add `Proxy::custom_http_auth(val)` for setting the raw `Proxy-Authorization` header when connecting to proxies. diff --git a/Cargo.toml b/Cargo.toml index e1c561a74..76d36f607 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.23" # remember to update html_root_url +version = "0.11.24" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]