Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions electrsd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions electrsd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "electrsd"
version = "0.38.0"
version = "0.38.1"
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion electrsd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading