From 1862ae61cbce36b54c681540d145c527041b9b82 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 1 May 2026 09:57:45 +1000 Subject: [PATCH 1/2] electrs: Fix documented dependency example The documented way to depend on this crate is stale, fix it. --- electrsd/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrsd/README.md b/electrsd/README.md index e4c64f7d3..697b69a84 100644 --- a/electrsd/README.md +++ b/electrsd/README.md @@ -18,7 +18,7 @@ assert_eq!(header.height, 0); In your project Cargo.toml, activate the following features ```yml -electrsd = { version= "0.23", features = ["corepc-node_23_1", "electrs_0_9_1"] } +electrsd = { version= "0.23", features = ["bitcoind_30_2", "bitcoin_download", "electrs_0_9_1"] } ``` Then use it: From 6423a8a1eba3f18cb6f8a49c8c5abdcfd567abb5 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 29 Apr 2026 17:13:13 +1000 Subject: [PATCH 2/2] electrsd: Fix typo in manifest Requires release to push the changes to crates.io Fix the typo, bump the version number, and add a changelog entry. --- electrsd/CHANGELOG.md | 5 +++++ electrsd/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/electrsd/CHANGELOG.md b/electrsd/CHANGELOG.md index 12d28e863..b800f1c67 100644 --- a/electrsd/CHANGELOG.md +++ b/electrsd/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.38.1 - 2026-05-01 + +- Fix typo in manifest `documentation` field. +- Fix stale documented way to depend on this crate. + # 0.38.0 - 2026-04-20 - Update to latest `bitcoind v0.38.0`, optional `bitreq v0.3.5`, and diff --git a/electrsd/Cargo.toml b/electrsd/Cargo.toml index 07b5ee9ef..8184aad31 100644 --- a/electrsd/Cargo.toml +++ b/electrsd/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "electrsd" -version = "0.38.0" +version = "0.38.1" authors = ["Riccardo Casatta "] description = "Utility to run a regtest electrs process, useful in integration testing environment" repository = "https://github.com/rust-bitcoin/corepc" -documentation = "https://docs.rs/elecrtsd/" +documentation = "https://docs.rs/electrsd/" license = "MIT" edition = "2021" rust-version = "1.75.0"