Skip to content
Merged
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
12 changes: 6 additions & 6 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ dependencies = [

[[package]]
name = "bitcoind"
version = "0.39.0"
version = "0.40.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand Down Expand Up @@ -180,7 +180,7 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"

[[package]]
name = "bitreq"
version = "0.3.5"
version = "0.3.6"
dependencies = [
"base64 0.22.1",
"log",
Expand Down Expand Up @@ -281,7 +281,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

[[package]]
name = "corepc-client"
version = "0.14.0"
version = "0.15.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -293,7 +293,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"bitcoin",
"serde",
Expand All @@ -317,7 +317,7 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"

[[package]]
name = "electrsd"
version = "0.39.0"
version = "0.40.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand Down Expand Up @@ -645,7 +645,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"

[[package]]
name = "jsonrpc"
version = "0.20.0"
version = "0.20.1"
dependencies = [
"base64 0.22.1",
"bitreq",
Expand Down
12 changes: 6 additions & 6 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ dependencies = [

[[package]]
name = "bitcoind"
version = "0.39.0"
version = "0.40.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand Down Expand Up @@ -180,7 +180,7 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"

[[package]]
name = "bitreq"
version = "0.3.5"
version = "0.3.6"
dependencies = [
"base64 0.22.1",
"log",
Expand Down Expand Up @@ -281,7 +281,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

[[package]]
name = "corepc-client"
version = "0.14.0"
version = "0.15.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -293,7 +293,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"bitcoin",
"serde",
Expand All @@ -317,7 +317,7 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"

[[package]]
name = "electrsd"
version = "0.39.0"
version = "0.40.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand Down Expand Up @@ -645,7 +645,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"

[[package]]
name = "jsonrpc"
version = "0.20.0"
version = "0.20.1"
dependencies = [
"base64 0.22.1",
"bitreq",
Expand Down
9 changes: 9 additions & 0 deletions bitcoind/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.40.0 - 2026-05-26

- Add initial support for Bitcoin Core v31 [#598](https://github.com/rust-bitcoin/corepc/pull/598)
- Upgrade to latest version of `corepc-types` and `corepc-client`

In this release we remove support for Bitcoin Core `v27.0`, `v27.1`,
`v28.0`, and `v28.1`. We still support the latest point release of
these two versions: `v27.2` and `v28.2`.

# 0.39.0 - 2026-05-12

- Update to use latest `corepc-client v0.14.0`.
Expand Down
4 changes: 2 additions & 2 deletions bitcoind/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoind"
version = "0.39.0"
version = "0.40.0"
authors = ["Riccardo Casatta <riccardo@casatta.it>", "Tobin C. Harding <me@tobin.cc>"]
license = "MIT"
repository = "https://github.com/rust-bitcoin/corepc"
Expand All @@ -14,7 +14,7 @@ exclude = ["tests", "contrib"]

[dependencies]
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }
corepc-client = { version = "0.14.0", path = "../client", features = ["client-sync"] }
corepc-client = { version = "0.15.0", path = "../client", features = ["client-sync"] }
log = { version = "0.4", default-features = false }
serde_json = { version = "1.0.117", default-features = false }
tempfile = { version = "3", default-features = false }
Expand Down
4 changes: 4 additions & 0 deletions bitreq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.3.6 - 2026-05-26

* Gate `webpki_roots` import on `webpki-roots` [#597](https://github.com/rust-bitcoin/corepc/pull/597)

# 0.3.5 - 2026-04-20

* Fix `tokio-rustls` feature gating for async rustls support [#563](https://github.com/rust-bitcoin/corepc/pull/563)
Expand Down
2 changes: 1 addition & 1 deletion bitreq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitreq"
version = "0.3.5"
version = "0.3.6"
authors = ["Jens Pitkanen <jens@neon.moe>", "Tobin C. Harding <me@tobin.cc>", "Matt Corallo", "Elias Rohrer <dev@tnull.de>"]
description = "Simple, minimal-dependency HTTP client"
documentation = "https://docs.rs/bitreq"
Expand Down
6 changes: 6 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.15.0 - 2026-05-26

- Add initial support for Bitcoin Core v31 [#598](https://github.com/rust-bitcoin/corepc/pull/598)
- Upgrade to latest `corepc-types` version
- Change `fee_delta` to `SignedAmount` [#605](https://github.com/rust-bitcoin/corepc/pull/605)

# 0.14.0 - 2026-05-12

- Update to use latest `corepc-types v0.13.0`.
Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "corepc-client"
version = "0.14.0"
version = "0.15.0"
authors = ["Tobin C. Harding <me@tobin.cc>", "Jamil Lambert <Jamil.Lambert@proton.me>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/corepc"
Expand Down Expand Up @@ -29,7 +29,7 @@ bitcoin = { version = "0.32.0", default-features = false, features = ["std", "se
log = "0.4"
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
serde_json = { version = "1.0.117" }
types = { package = "corepc-types", version = "0.13.0", path = "../types", default-features = false, features = ["std"] }
types = { package = "corepc-types", version = "0.14.0", path = "../types", default-features = false, features = ["std"] }

jsonrpc = { version = "0.20.0", path = "../jsonrpc", features = ["bitreq_http"], optional = true }

Expand Down
7 changes: 7 additions & 0 deletions electrsd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.40.0 - 2026-05-26

With this release we now set the default feature to `electrs_0_10_6`.

- Include in workspace and CI [#570](https://github.com/rust-bitcoin/corepc/pull/570)
- Upgrade to latest version of `corepc-types`, `corepc-client`, and `bitcoind`

# 0.39.0 - 2026-05-12

- Update to use latest `bitcoind v0.39.0` and `corepc-client v0.14.0`.
Expand Down
6 changes: 3 additions & 3 deletions electrsd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "electrsd"
version = "0.39.0"
version = "0.40.0"
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"
Expand All @@ -12,8 +12,8 @@ categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
exclude = ["tests", "contrib"]

[dependencies]
bitcoind = { version = "0.39.0", path = "../bitcoind" }
corepc-client = { version = "0.14.0", path = "../client" }
bitcoind = { version = "0.40.0", path = "../bitcoind" }
corepc-client = { version = "0.15.0", path = "../client" }
electrum-client = { version = "0.24.0", default-features = false }
log = { version = "0.4" }

Expand Down
4 changes: 2 additions & 2 deletions integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ TODO = [] # This is a dirty hack while writing the tests.
[dependencies]
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
env_logger = "0.9.0"
bitcoind = { package = "bitcoind", version = "0.39.0", path = "../bitcoind", default-features = false }
bitcoind = { package = "bitcoind", version = "0.40.0", path = "../bitcoind", default-features = false }
rand = "0.8.5"
# Just so we can enable the feature.
types = { package = "corepc-types", version = "0.13.0", path = "../types", features = ["serde-deny-unknown-fields"] }
types = { package = "corepc-types", version = "0.14.0", path = "../types", features = ["serde-deny-unknown-fields"] }

[dev-dependencies]
4 changes: 4 additions & 0 deletions jsonrpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.20.1 - 2026-05-26

* Set host header to URL hostname instead of resolved IP [#578](https://github.com/rust-bitcoin/corepc/pull/578)

# 0.20.0 - 2026-04-20

* Add async support [#558](https://github.com/rust-bitcoin/corepc/pull/558)
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrpc"
version = "0.20.0"
version = "0.20.1"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/corepc/"
Expand Down
5 changes: 5 additions & 0 deletions types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.14.0 - 2026-05-26

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# 0.14.0 - 2026-05-26
# 0.14.0 - 2026-05-26
- Change `fee_delta` to `SignedAmount` [#605](https://github.com/rust-bitcoin/corepc/pull/605)


- Add initial support for Bitcoin Core v31 [#598](https://github.com/rust-bitcoin/corepc/pull/598)
- Change `fee_delta` to `SignedAmount` [#605](https://github.com/rust-bitcoin/corepc/pull/605)

# 0.13.0 - 2026-05-12

- Change `model::GetBlockchainInfo::prune_target_size` from `u32` to `u64` [#547](https://github.com/rust-bitcoin/corepc/pull/547)
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "corepc-types"
version = "0.13.0"
version = "0.14.0"
authors = ["Tobin C. Harding <me@tobin.cc>", "Jamil Lambert <Jamil.Lambert@proton.me>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/corepc"
Expand Down
Loading