From bd9ff9f371b756decf26fbbde1687433b0f63774 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 4 Jan 2021 15:18:16 -0800 Subject: [PATCH] v0.11.0 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8482bdf..387dfea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# v0.11.0 + +- Change `multipart` to be an optional cargo feature. +- Remove deprecated methods. + +- Update to Tokio v1.0. +- Update to Bytes v1.0. +- Update to hyper v0.14. + ## v0.10.10 - Add `tcp_keepalive` option to `blocking::ClientBuilder`. diff --git a/Cargo.toml b/Cargo.toml index 808206d..56fb969 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.10.10" # remember to update html_root_url +version = "0.11.0" # 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/README.md b/README.md index e8db41e..d2e5d04 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ optional features, so your `Cargo.toml` could look like this: ```toml [dependencies] -reqwest = { version = "0.10", features = ["json"] } -tokio = { version = "0.2", features = ["full"] } +reqwest = { version = "0.11", features = ["json"] } +tokio = { version = "1", features = ["full"] } ``` And then the code: @@ -49,7 +49,7 @@ There is an optional "blocking" client API that can be enabled: ```toml [dependencies] -reqwest = { version = "0.10", features = ["blocking", "json"] } +reqwest = { version = "0.11", features = ["blocking", "json"] } ``` ```rust,no_run diff --git a/src/lib.rs b/src/lib.rs index 3fff272..beb3f63 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))] -#![doc(html_root_url = "https://docs.rs/reqwest/0.10.10")] +#![doc(html_root_url = "https://docs.rs/reqwest/0.11.0")] //! # reqwest //!