Skip to content

Commit bd9ff9f

Browse files
committed
v0.11.0
1 parent afed48c commit bd9ff9f

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v0.11.0
2+
3+
- Change `multipart` to be an optional cargo feature.
4+
- Remove deprecated methods.
5+
6+
- Update to Tokio v1.0.
7+
- Update to Bytes v1.0.
8+
- Update to hyper v0.14.
9+
110
## v0.10.10
211

312
- Add `tcp_keepalive` option to `blocking::ClientBuilder`.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest"
3-
version = "0.10.10" # remember to update html_root_url
3+
version = "0.11.0" # remember to update html_root_url
44
description = "higher level HTTP client library"
55
keywords = ["http", "request", "client"]
66
categories = ["web-programming::http-client", "wasm"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ optional features, so your `Cargo.toml` could look like this:
2323

2424
```toml
2525
[dependencies]
26-
reqwest = { version = "0.10", features = ["json"] }
27-
tokio = { version = "0.2", features = ["full"] }
26+
reqwest = { version = "0.11", features = ["json"] }
27+
tokio = { version = "1", features = ["full"] }
2828
```
2929

3030
And then the code:
@@ -49,7 +49,7 @@ There is an optional "blocking" client API that can be enabled:
4949

5050
```toml
5151
[dependencies]
52-
reqwest = { version = "0.10", features = ["blocking", "json"] }
52+
reqwest = { version = "0.11", features = ["blocking", "json"] }
5353
```
5454

5555
```rust,no_run

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![deny(missing_docs)]
22
#![deny(missing_debug_implementations)]
33
#![cfg_attr(test, deny(warnings))]
4-
#![doc(html_root_url = "https://docs.rs/reqwest/0.10.10")]
4+
#![doc(html_root_url = "https://docs.rs/reqwest/0.11.0")]
55

66
//! # reqwest
77
//!

0 commit comments

Comments
 (0)