This commit is contained in:
Sean McArthur
2020-01-09 13:50:56 -08:00
parent fd88e0c648
commit d662c850a9
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
## v0.10.1
- Add `socks` optional feature to support SOCKS5 proxies.
- Add `RequestBuilder::timeout()` to configure a timeout for a single request, instead of using the client's timeout.
- Add `ClientBuilder::connection_verbose()` option to enable verbose IO logs.
- (wasm) Add `RequestBuilder::fetch_mode_no_cors()` option.
- (wasm) Add `Response::url()` getter method.
# v0.10.0
- Add `std::future::Future` support.

View File

@@ -1,6 +1,6 @@
[package]
name = "reqwest"
version = "0.10.0" # remember to update html_root_url
version = "0.10.1" # remember to update html_root_url
description = "higher level HTTP client library"
keywords = ["http", "request", "client"]
repository = "https://github.com/seanmonstar/reqwest"

View File

@@ -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.0")]
#![doc(html_root_url = "https://docs.rs/reqwest/0.10.1")]
//! # reqwest
//!