From e5d20b615718da7654a02688bcfee69a5c006684 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Mon, 8 Dec 2025 17:23:37 +0000 Subject: [PATCH 1/3] Fix stale rustdoc version Change the version from the stale minreq version to the current bitreq version. --- bitreq/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitreq/src/lib.rs b/bitreq/src/lib.rs index ee2d553d..173f2252 100644 --- a/bitreq/src/lib.rs +++ b/bitreq/src/lib.rs @@ -21,7 +21,7 @@ //! //! ```toml //! [dependencies] -//! bitreq = { version = "2.13.5-alpha", features = ["https"] } +//! bitreq = { version = "0.2.0", features = ["https"] } //! ``` //! //! Below is the list of all available features. From 58ce9ef498c59698c539d491fa612eff489449ae Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Mon, 8 Dec 2025 17:32:55 +0000 Subject: [PATCH 2/3] Update rustdoc comment about no default features bitreq has `std` as a default feature. Change the wording to reflect that. --- bitreq/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitreq/src/lib.rs b/bitreq/src/lib.rs index 173f2252..54ceb25c 100644 --- a/bitreq/src/lib.rs +++ b/bitreq/src/lib.rs @@ -15,9 +15,9 @@ //! # Additional features //! //! Since the crate is supposed to be minimal in terms of -//! dependencies, there are no default features, and optional -//! functionality can be enabled by specifying features for `bitreq` -//! dependency in `Cargo.toml`: +//! dependencies, only the `std` feature is enabled by default. +//! Additional functionality can be enabled by specifying features for +//! the `bitreq` dependency in `Cargo.toml`: //! //! ```toml //! [dependencies] From 4f269d5dbe368d33a4ebd52957aaae4a28e06d13 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Mon, 8 Dec 2025 17:33:53 +0000 Subject: [PATCH 3/3] Update stale README.md section Left over section header and todo from minreq. Update the heading and remove the todo. --- bitreq/README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bitreq/README.md b/bitreq/README.md index 3b02328b..3cb0dce0 100644 --- a/bitreq/README.md +++ b/bitreq/README.md @@ -43,7 +43,7 @@ require a higher MSRV. ## License This crate is distributed under the terms of the [ISC license](COPYING.md). -## Planned for 3.0.0 +## Planned for a future major release This is a list of features I'll implement once it gets long enough, or a severe enough issue is found that there's good reason to make a @@ -59,9 +59,6 @@ major version bump. with `http://` or `https://`. - Change default proxy port to 1080 (from 8080). Curl uses 1080, so it's a sane default. -- Bump MSRV enough to compile the latest versions of all dependencies, and add - the `rust-version` (at least 1.56) and `edition` (at least 2021) fields to - Cargo.toml. ### Potential ideas