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
6 changes: 3 additions & 3 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

[[package]]
name = "corepc-client"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -250,7 +250,7 @@ dependencies = [

[[package]]
name = "corepc-node"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand All @@ -268,7 +268,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bitcoin",
"serde",
Expand Down
6 changes: 3 additions & 3 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

[[package]]
name = "corepc-client"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -250,7 +250,7 @@ dependencies = [

[[package]]
name = "corepc-node"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand All @@ -268,7 +268,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bitcoin",
"serde",
Expand Down
6 changes: 5 additions & 1 deletion client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 0.11.0 - 2025-11-18
# 0.12.0 - 2026-04-13

- Upgrade to latest `corepc-types v0.12.0`.

# 0.11.0 - 2026-04-09

- Add support for Bitcoin Core 30.0 [#387](https://github.com/rust-bitcoin/corepc/pull/387),
[#388](https://github.com/rust-bitcoin/corepc/pull/388).
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.11.0"
version = "0.12.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 All @@ -25,7 +25,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.11.0", path = "../types", default-features = false, features = ["std"] }
types = { package = "corepc-types", version = "0.12.0", path = "../types", default-features = false, features = ["std"] }

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

Expand Down
4 changes: 2 additions & 2 deletions integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ 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"
node = { package = "corepc-node", version = "0.11.0", path = "../node", default-features = false }
node = { package = "corepc-node", version = "0.12.0", path = "../node", default-features = false }
rand = "0.8.5"
# Just so we can enable the feature.
types = { package = "corepc-types", version = "0.11.0", path = "../types", features = ["serde-deny-unknown-fields"] }
types = { package = "corepc-types", version = "0.12.0", path = "../types", features = ["serde-deny-unknown-fields"] }

[dev-dependencies]

Expand Down
13 changes: 11 additions & 2 deletions node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# 0.11.0 - 2025-11-18
# 0.12.0 - 2026-04-13

- Bump MSRV to 1.75.0 [#405](https://github.com/rust-bitcoin/corepc/pull/405)
- Update to use latest `client v0.11.0`.
- Update to use latest `client v0.12.0`.
- Add support for Bitcoin Core 30.0

# 0.11.0 - 2025-11-18

**NON-EXISTENT**

Turns out we prepped this release then forgot to pull the trigger
because of a fix that had to be done upstream.

Just bump straight to `v0.12.0` to stay in sync with the other corepc crates.

# 0.10.1 2025-11-18

- Remove `doc_auto_cfg` to fix build on docs.rs
Expand Down
4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "corepc-node"
version = "0.11.0"
version = "0.12.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.11.0", path = "../client", features = ["client-sync"] }
corepc-client = { version = "0.12.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
12 changes: 12 additions & 0 deletions types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 0.12.0 - 2026-04-13

- Update `GetBlockStats` fields to be optional [#534](https://github.com/rust-bitcoin/corepc/pull/534)
- Model `merkle_root` as `TxMerkleNode` [#519](https://github.com/rust-bitcoin/corepc/pull/519)
- Add `getblock` verbosity 2/3 support for v29 onward [#485](https://github.com/rust-bitcoin/corepc/pull/485)
- Implement `scantxoutset` method and test [#428](https://github.com/rust-bitcoin/corepc/pull/428)
- Implement hidden methods:
- [#432](https://github.com/rust-bitcoin/corepc/pull/432)
- [#433](https://github.com/rust-bitcoin/corepc/pull/433)
- [#435](https://github.com/rust-bitcoin/corepc/pull/435)
- [#439](https://github.com/rust-bitcoin/corepc/pull/439)

# 0.11.0 - 2025-11-18

- Add support for Bitcoin Core 30.0 [#387](https://github.com/rust-bitcoin/corepc/pull/387),
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.11.0"
version = "0.12.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