Skip to content

Commit bd36d53

Browse files
committed
v0.9.24
1 parent 0e4d07f commit bd36d53

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.9.24
2+
3+
- Fix stray `dbg!` macro usage.
4+
15
## v0.9.23
26

37
- Fix when passing a `Url` that contains a username and password, extract it and send as basic authorizaton (#715).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest"
3-
version = "0.9.23" # remember to update html_root_url
3+
version = "0.9.24" # 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

Lines changed: 1 addition & 1 deletion
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.23")]
4+
#![doc(html_root_url = "https://docs.rs/reqwest/0.9.24")]
55

66
//! # reqwest
77
//!

0 commit comments

Comments
 (0)