Skip to content

Commit

Permalink
v0.9.22
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Oct 9, 2019
1 parent 5da0ee6 commit d2cbc8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## v0.9.22

- Revert returning an error when using blocking `Client` inside an asynchronous context. Log a warning instead.

## v0.9.21

- Add `executor` method to `ClientBuilder`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "reqwest"
version = "0.9.21" # remember to update html_root_url
version = "0.9.22" # remember to update html_root_url
description = "higher level HTTP client library"
keywords = ["http", "request", "client"]
repository = "https://github.com/seanmonstar/reqwest"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -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.9.21")]
#![doc(html_root_url = "https://docs.rs/reqwest/0.9.22")]

//! # reqwest
//!
Expand Down

0 comments on commit d2cbc8e

Please sign in to comment.