Skip to content

Release tracking PR: node, client, and types - v0.8.0 #162

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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 @@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

[[package]]
name = "corepc-client"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -165,7 +165,7 @@ dependencies = [

[[package]]
name = "corepc-node"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand All @@ -183,7 +183,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.7.0"
version = "0.8.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 @@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

[[package]]
name = "corepc-client"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"bitcoin",
"corepc-types",
Expand All @@ -165,7 +165,7 @@ dependencies = [

[[package]]
name = "corepc-node"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"anyhow",
"bitcoin_hashes",
Expand All @@ -183,7 +183,7 @@ dependencies = [

[[package]]
name = "corepc-types"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"bitcoin",
"serde",
Expand Down
9 changes: 9 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.8.0 2025-05-12

- Remove unnecessary error variants [#127](https://github.com/rust-bitcoin/corepc/pull/127)
- Move types to version specific module [#156](https://github.com/rust-bitcoin/corepc/pull/156)
- Move `TemplateRequest` and `TemplateRules` into their proper module [#151](https://github.com/rust-bitcoin/corepc/pull/151)
- Implement `pruneblock` method and test [#132](https://github.com/rust-bitcoin/corepc/pull/132)
- Implement `savemempool` method and test [#148](https://github.com/rust-bitcoin/corepc/pull/148)
- Implement `verifychain` method and test [#155](https://github.com/rust-bitcoin/corepc/pull/155)

# 0.7.0 2025-04-04

- Fix unloadwallet method [#110](https://github.com/rust-bitcoin/corepc/pull/110)
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.7.0"
version = "0.8.0"
authors = ["Tobin C. Harding <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/corepc"
Expand All @@ -22,7 +22,7 @@ client-sync = ["jsonrpc"]

[dependencies]
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
types = { package = "corepc-types", version = "0.7.0", default-features = false, features = ["std"] }
types = { package = "corepc-types", version = "0.8.0", default-features = false, features = ["std"] }
log = "0.4"
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
serde_json = { version = "1.0.117" }
Expand Down
2 changes: 1 addition & 1 deletion integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ TODO = [] # This is a dirty hack while writing the tests.

[dependencies]
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
node = { package = "corepc-node", version = "0.7.0", default-features = false, features = ["download"] }
node = { package = "corepc-node", version = "0.8.0", default-features = false, features = ["download"] }
rand = "0.8.5"
env_logger = "0.9.0"

Expand Down
6 changes: 6 additions & 0 deletions node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.8.0 2025-05-12

- Add support for Bitcoin Core 0.17.2 [#128](https://github.com/rust-bitcoin/corepc/pull/128)
- Upgrade `zip` in light of RUSTSEC-2020-0071 [#143](https://github.com/rust-bitcoin/corepc/pull/143)
- Drop default features for `zip` [#130](https://github.com/rust-bitcoin/corepc/pull/130)

# 0.7.1 2025-05-05

- backport: bump zip in light of RUSTSEC-2020-0071 [#145](https://github.com/rust-bitcoin/corepc/pull/145)
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.7.0"
version = "0.8.0"
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
license = "MIT"
repository = "https://github.com/rust-bitcoin/corepc"
Expand All @@ -13,7 +13,7 @@ rust-version = "1.63.0"
exclude = ["tests", "contrib"]

[dependencies]
corepc-client = { version = "0.7.0", features = ["client-sync"] }
corepc-client = { version = "0.8.0", features = ["client-sync"] }
log = { version = "0.4", default-features = false }
which = { version = "3.1.1", default-features = false }
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }
Expand Down
8 changes: 8 additions & 0 deletions types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.8.0 2025-05-12

- Improve the version specific SSOT docs [#142](https://github.com/rust-bitcoin/corepc/pull/)
- Remove model for `dumpwallet` [#141](https://github.com/rust-bitcoin/corepc/pull/141)
- Implement `pruneblock` method and test [#132](https://github.com/rust-bitcoin/corepc/pull/132)
- Implement `savemempool` method and test [#148](https://github.com/rust-bitcoin/corepc/pull/148)
- Implement `verifychain` method and test [#155](https://github.com/rust-bitcoin/corepc/pull/155)

# 0.7.0 2025-04-04

- Fix `{create,load}wallet` on `v25` [#108](https://github.com/rust-bitcoin/corepc/pull/108)
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.7.0"
version = "0.8.0"
authors = ["Tobin C. Harding <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/corepc"
Expand Down