Skip to content

Commit 0a146be

Browse files
committed
Merge #378: Bump versions to 0.10.0
2e71a27 Bump versions to 0.10.0 (Tobin C. Harding) Pull request description: In preparation for release add a changelog entry, bump the version, and update the lockfiles. This is for all three released crates. FTR because they depend on each other release of `types` triggers release of the others too (if I'm not mistaken). ACKs for top commit: jamillambert: ACK 2e71a27 Tree-SHA512: 9c336eb5e65d8172dd4f51826e848d68577eafd445c61ad4ef16174b06b1d0191872e20ab901b13c322d0ea7790fdd3f3aacf62417d968395924efe7ac5fc0cb
2 parents fa29634 + 2e71a27 commit 0a146be

File tree

8 files changed

+23
-9
lines changed

8 files changed

+23
-9
lines changed

Cargo-minimal.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
153153

154154
[[package]]
155155
name = "corepc-client"
156-
version = "0.9.0"
156+
version = "0.10.0"
157157
dependencies = [
158158
"bitcoin",
159159
"corepc-types",
@@ -165,7 +165,7 @@ dependencies = [
165165

166166
[[package]]
167167
name = "corepc-node"
168-
version = "0.9.0"
168+
version = "0.10.0"
169169
dependencies = [
170170
"anyhow",
171171
"bitcoin_hashes",
@@ -183,7 +183,7 @@ dependencies = [
183183

184184
[[package]]
185185
name = "corepc-types"
186-
version = "0.9.0"
186+
version = "0.10.0"
187187
dependencies = [
188188
"bitcoin",
189189
"serde",

Cargo-recent.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
153153

154154
[[package]]
155155
name = "corepc-client"
156-
version = "0.9.0"
156+
version = "0.10.0"
157157
dependencies = [
158158
"bitcoin",
159159
"corepc-types",
@@ -165,7 +165,7 @@ dependencies = [
165165

166166
[[package]]
167167
name = "corepc-node"
168-
version = "0.9.0"
168+
version = "0.10.0"
169169
dependencies = [
170170
"anyhow",
171171
"bitcoin_hashes",
@@ -183,7 +183,7 @@ dependencies = [
183183

184184
[[package]]
185185
name = "corepc-types"
186-
version = "0.9.0"
186+
version = "0.10.0"
187187
dependencies = [
188188
"bitcoin",
189189
"serde",

client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.10.0 2025-10-07
2+
3+
- Update to use latest `types v0.10.0`.
4+
15
# 0.9.0 2025-09-11
26

37
Add support for all the new methods added as part of the `types v0.9.0`

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-client"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Tobin C. Harding <me@tobin.cc>", "Jamil Lambert <Jamil.Lambert@proton.me>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"

node/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.10.0 2025-10-07
2+
3+
- Update to use latest `client v0.10.0`.
4+
15
# 0.9.0 2025-09-11
26

37
The `types v0.9.0` release adds support for **all** remaining documented

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-node"
3-
version = "0.9.0"
3+
version = "0.10.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"

types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.10.0 2025-10-07
2+
3+
- Add `ScriptPubKey` model [#370](https://github.com/rust-bitcoin/corepc/pull/370)
4+
- Add a feature for `serde` deny unknown fields [#367](https://github.com/rust-bitcoin/corepc/pull/367)
5+
- Fix a few of type fields in v24 and v28 fixes [#375](https://github.com/rust-bitcoin/corepc/pull/375)
6+
17
# 0.9.0 2025-09-11
28

39
This release is massive, it delivers support for **all** documented Core RPC

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-types"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Tobin C. Harding <me@tobin.cc>", "Jamil Lambert <Jamil.Lambert@proton.me>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"

0 commit comments

Comments
 (0)