Skip to content

Commit a0a7db0

Browse files
committed
v0.11.12
1 parent ae2d521 commit a0a7db0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.11.12
2+
3+
- Add `ClientBuilder::resolve_to_addrs()` which allows a slice of IP addresses to be specified for a single host.
4+
- Add `Response::upgrade()` to await whether the server agrees to an HTTP upgrade.
5+
16
## v0.11.11
27

38
- Add HTTP/2 keep-alive configuration methods on `ClientBuilder`.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest"
3-
version = "0.11.11" # remember to update html_root_url
3+
version = "0.11.12" # 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"]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![deny(missing_debug_implementations)]
33
#![cfg_attr(docsrs, feature(doc_cfg))]
44
#![cfg_attr(test, deny(warnings))]
5-
#![doc(html_root_url = "https://docs.rs/reqwest/0.11.11")]
5+
#![doc(html_root_url = "https://docs.rs/reqwest/0.11.12")]
66

77
//! # reqwest
88
//!

0 commit comments

Comments
 (0)