This commit is contained in:
Sean McArthur
2020-07-24 07:13:27 -07:00
parent 4a8998241a
commit c78aa50d4c
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
## v0.10.7
- Add `NO_PROXY` environment variable support.
- Add more `Error::{is_request, is_body, is_decode}` getters.
- Add conversion of `reqwest::ClientBuilder` to `reqwest::blocking::ClientBuilder`.
- Add `headers_mut()` to `reqwest::blocking::Response`.
- (wasm) Add `form()`, `query()`, `multipart` and `bearer_auth()` to `RequestBuilder`.
## v0.10.6
- Changed handling of URLs that don't have `http:` or `https:` schemes, returning an error instead.

View File

@@ -1,6 +1,6 @@
[package]
name = "reqwest"
version = "0.10.6" # remember to update html_root_url
version = "0.10.7" # remember to update html_root_url
description = "higher level HTTP client library"
keywords = ["http", "request", "client"]
categories = ["web-programming::http-client", "wasm"]

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