diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b0386b03..1e8fa47e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v0.12.0 + +- Upgrade to `hyper`, `http`, and `http-body` v1. +- Add better support for converting to and from `http::Request` and `http::Response`. +- Add `http2` optional cargo feature, default on. +- Add `charset` optional cargo feature, default on. +- Add `macos-system-configuration` cargo feature, default on. +- Change all optional dependencies to no longer be exposed as implicit features. +- Add `ClientBuilder::interface(str)` to specify the local interface to bind to. +- Experimental: disables the `http3` feature temporarily. + ## v0.11.27 - Add `hickory-dns` feature, deprecating `trust-dns`. diff --git a/Cargo.toml b/Cargo.toml index 37e447379..859a3c92c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.27" # remember to update html_root_url +version = "0.12.0" description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"]