diff --git a/CHANGELOG.md b/CHANGELOG.md index 226823b59..35ceafa00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.11.2 + +- Add `CookieStore` trait to customize the type that stores and retrieves cookies for a session. +- Add `cookie::Jar` as a default `CookieStore`, easing creating some session cookies before creating the `Client`. +- Add `ClientBuilder::http2_adaptive_window()` option to configure an adaptive HTTP2 flow control behavior. +- Add `ClientBuilder::http2_max_frame_size()` option to adjust the maximum HTTP2 frame size that can be received. +- Implement `IntoUrl` for `String`, making it more convenient to create requests with `format!`. + ## v0.11.1 - Add `ClientBuilder::tls_built_in_root_certs()` option to disable built-in root certificates. diff --git a/Cargo.toml b/Cargo.toml index bf43b1028..3ea71e73e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.11.1" # remember to update html_root_url +version = "0.11.2" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] categories = ["web-programming::http-client", "wasm"] diff --git a/src/lib.rs b/src/lib.rs index 98b247980..f13140c5d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![deny(missing_debug_implementations)] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(test, deny(warnings))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.11.1")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.11.2")] //! # reqwest //!