From 684ba0633cfedd8747b161c6e7e4663a1bf4b15a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 18 Nov 2025 11:43:08 +1100 Subject: [PATCH] node: Bump the version to 0.10.1 We released with `doc_auto_cfg` in the crate and this caused the docs build on docs.rs to fail. Bump the version, add a changelog entry, and update the lock files. --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- node/CHANGELOG.md | 4 ++++ node/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index a09c0c57..53b5c237 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "corepc-node" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "bitcoin_hashes", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index e616ff1f..34b7d83e 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "corepc-node" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "bitcoin_hashes", diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 962c40bb..c16cfc0d 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.1 2025-11-18 + +- Remove `doc_auto_cfg` to fix build on docs.rs + # 0.10.0 2025-10-07 - Update to use latest `client v0.10.0`. diff --git a/node/Cargo.toml b/node/Cargo.toml index 9ce61f30..0c8d7d92 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corepc-node" -version = "0.10.0" +version = "0.10.1" authors = ["Riccardo Casatta ", "Tobin C. Harding "] license = "MIT" repository = "https://github.com/rust-bitcoin/corepc"