Skip to content

Commit 37de741

Browse files
committed
bitcoind: Bump version to 0.40.0
In preparation for release add a changelog entry, bump the version, and update the lock files.
1 parent 890371a commit 37de741

6 files changed

Lines changed: 14 additions & 5 deletions

File tree

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ dependencies = [
150150

151151
[[package]]
152152
name = "bitcoind"
153-
version = "0.39.0"
153+
version = "0.40.0"
154154
dependencies = [
155155
"anyhow",
156156
"bitcoin_hashes",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ dependencies = [
150150

151151
[[package]]
152152
name = "bitcoind"
153-
version = "0.39.0"
153+
version = "0.40.0"
154154
dependencies = [
155155
"anyhow",
156156
"bitcoin_hashes",

bitcoind/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.40.0 - 2026-05-26
2+
3+
- Add initial support for Bitcoin Core v31 [#598](https://github.com/rust-bitcoin/corepc/pull/598)
4+
- Upgrade to latest version of `corepc-types` and `corepc-client`
5+
6+
In this release we remove support for Bitcoin Core `v27.0`, `v27.1`,
7+
`v28.0`, and `v28.1`. We still support the latest point release of
8+
these two versions: `v27.2` and `v28.2`.
9+
110
# 0.39.0 - 2026-05-12
211

312
- Update to use latest `corepc-client v0.14.0`.

bitcoind/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind"
3-
version = "0.39.0"
3+
version = "0.40.0"
44
authors = ["Riccardo Casatta <riccardo@casatta.it>", "Tobin C. Harding <me@tobin.cc>"]
55
license = "MIT"
66
repository = "https://github.com/rust-bitcoin/corepc"

electrsd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
1212
exclude = ["tests", "contrib"]
1313

1414
[dependencies]
15-
bitcoind = { version = "0.39.0", path = "../bitcoind" }
15+
bitcoind = { version = "0.40.0", path = "../bitcoind" }
1616
corepc-client = { version = "0.15.0", path = "../client" }
1717
electrum-client = { version = "0.24.0", default-features = false }
1818
log = { version = "0.4" }

integration_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ TODO = [] # This is a dirty hack while writing the tests.
6060
[dependencies]
6161
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
6262
env_logger = "0.9.0"
63-
bitcoind = { package = "bitcoind", version = "0.39.0", path = "../bitcoind", default-features = false }
63+
bitcoind = { package = "bitcoind", version = "0.40.0", path = "../bitcoind", default-features = false }
6464
rand = "0.8.5"
6565
# Just so we can enable the feature.
6666
types = { package = "corepc-types", version = "0.14.0", path = "../types", features = ["serde-deny-unknown-fields"] }

0 commit comments

Comments
 (0)