diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 7394b2e7..249e6863 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "corepc-client" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitcoin", "corepc-types", @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "corepc-node" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "bitcoin_hashes", @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "corepc-types" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitcoin", "serde", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 16c2abb7..05d193a9 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "corepc-client" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitcoin", "corepc-types", @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "corepc-node" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "bitcoin_hashes", @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "corepc-types" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitcoin", "serde", diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index b1fc1f8c..3e0835a5 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.0 2025-10-07 + +- Update to use latest `types v0.10.0`. + # 0.9.0 2025-09-11 Add support for all the new methods added as part of the `types v0.9.0` diff --git a/client/Cargo.toml b/client/Cargo.toml index f84253cf..7762c8ad 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corepc-client" -version = "0.9.0" +version = "0.10.0" authors = ["Tobin C. Harding ", "Jamil Lambert "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/corepc" diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 81007e7a..962c40bb 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.0 2025-10-07 + +- Update to use latest `client v0.10.0`. + # 0.9.0 2025-09-11 The `types v0.9.0` release adds support for **all** remaining documented diff --git a/node/Cargo.toml b/node/Cargo.toml index a9b5ab54..9dcd71a5 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corepc-node" -version = "0.9.0" +version = "0.10.0" authors = ["Riccardo Casatta ", "Tobin C. Harding "] license = "MIT" repository = "https://github.com/rust-bitcoin/corepc" diff --git a/types/CHANGELOG.md b/types/CHANGELOG.md index 3234daf2..239e5982 100644 --- a/types/CHANGELOG.md +++ b/types/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.10.0 2025-10-07 + +- Add `ScriptPubKey` model [#370](https://github.com/rust-bitcoin/corepc/pull/370) +- Add a feature for `serde` deny unknown fields [#367](https://github.com/rust-bitcoin/corepc/pull/367) +- Fix a few of type fields in v24 and v28 fixes [#375](https://github.com/rust-bitcoin/corepc/pull/375) + # 0.9.0 2025-09-11 This release is massive, it delivers support for **all** documented Core RPC diff --git a/types/Cargo.toml b/types/Cargo.toml index dca63bee..70b02105 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corepc-types" -version = "0.9.0" +version = "0.10.0" authors = ["Tobin C. Harding ", "Jamil Lambert "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/corepc"