Skip to content

Commit 5aca05e

Browse files
committed
Merge #571: Release tracking PR: electrsd 0.38.1
6423a8a electrsd: Fix typo in manifest (Tobin C. Harding) 1862ae6 electrs: Fix documented dependency example (Tobin C. Harding) Pull request description: We released a typo in the `electrsd` manifest. Requires release to push the changes to crates.io Fix the typo, bump the version number, and add a changelog entry. ACKs for top commit: jamillambert: ACK 6423a8a satsfy: ACK 6423a8a Tree-SHA512: 98e289b792d13cc2289fc07d2ff2a4410377ca0c353e4809cdaafc2a2842446d4a725600d0bf85a99e9ae0ee0a6a225293ed0e6f612b8c6ee0d4759a0d4f6865
2 parents 49ffe90 + 6423a8a commit 5aca05e

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

electrsd/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.38.1 - 2026-05-01
2+
3+
- Fix typo in manifest `documentation` field.
4+
- Fix stale documented way to depend on this crate.
5+
16
# 0.38.0 - 2026-04-20
27

38
- Update to latest `bitcoind v0.38.0`, optional `bitreq v0.3.5`, and

electrsd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "electrsd"
3-
version = "0.38.0"
3+
version = "0.38.1"
44
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
55
description = "Utility to run a regtest electrs process, useful in integration testing environment"
66
repository = "https://github.com/rust-bitcoin/corepc"
7-
documentation = "https://docs.rs/elecrtsd/"
7+
documentation = "https://docs.rs/electrsd/"
88
license = "MIT"
99
edition = "2021"
1010
rust-version = "1.75.0"

electrsd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ assert_eq!(header.height, 0);
1818
In your project Cargo.toml, activate the following features
1919

2020
```yml
21-
electrsd = { version= "0.23", features = ["corepc-node_23_1", "electrs_0_9_1"] }
21+
electrsd = { version= "0.23", features = ["bitcoind_30_2", "bitcoin_download", "electrs_0_9_1"] }
2222
```
2323

2424
Then use it:

0 commit comments

Comments
 (0)