Skip to content

Commit a9dc7a7

Browse files
committed
v0.9.23
1 parent 6334345 commit a9dc7a7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.9.23
2+
3+
- Fix when passing a `Url` that contains a username and password, extract it and send as basic authorizaton (#715).
4+
15
## v0.9.22
26

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest"
3-
version = "0.9.22" # remember to update html_root_url
3+
version = "0.9.23" # remember to update html_root_url
44
description = "higher level HTTP client library"
55
keywords = ["http", "request", "client"]
66
repository = "https://github.com/seanmonstar/reqwest"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![deny(missing_docs)]
22
#![deny(missing_debug_implementations)]
33
#![cfg_attr(test, deny(warnings))]
4-
#![doc(html_root_url = "https://docs.rs/reqwest/0.9.22")]
4+
#![doc(html_root_url = "https://docs.rs/reqwest/0.9.23")]
55

66
//! # reqwest
77
//!

0 commit comments

Comments
 (0)