v0.10.7
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -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
|
||||
//!
|
||||
|
||||
Reference in New Issue
Block a user