Skip to content

Commit d8174a0

Browse files
committed
Bump version numbers
In preparation for releasing all three crates bump the version to 0.8.0, add changelog entry, and update the lock files.
1 parent 1462881 commit d8174a0

File tree

9 files changed

+47
-12
lines changed

9 files changed

+47
-12
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.7.0"
156+
version = "0.8.0"
157157
dependencies = [
158158
"bitcoin",
159159
"corepc-types",
@@ -165,7 +165,7 @@ dependencies = [
165165

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

184184
[[package]]
185185
name = "corepc-types"
186-
version = "0.7.0"
186+
version = "0.8.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.7.0"
156+
version = "0.8.0"
157157
dependencies = [
158158
"bitcoin",
159159
"corepc-types",
@@ -165,7 +165,7 @@ dependencies = [
165165

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

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

client/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.8.0 2025-05-21
2+
3+
- Add support for Bitcoin Core 29.0 [#131](https://github.com/rust-bitcoin/corepc/pull/131)
4+
- Add support for Bitcoin Core 28.1 [#184](https://github.com/rust-bitcoin/corepc/pull/184)
5+
- Add support for Bitcoin Core 0.17.2 [#128](https://github.com/rust-bitcoin/corepc/pull/128)
6+
- Remove unnecessary error variants [#127](https://github.com/rust-bitcoin/corepc/pull/127)
7+
- Move types to version specific module [#156](https://github.com/rust-bitcoin/corepc/pull/156)
8+
- Move `TemplateRequest` and `TemplateRules` into their proper module [#151](https://github.com/rust-bitcoin/corepc/pull/151)
9+
- Implement `pruneblock` method and test [#132](https://github.com/rust-bitcoin/corepc/pull/132)
10+
- Implement `savemempool` method and test [#148](https://github.com/rust-bitcoin/corepc/pull/148)
11+
- Implement `verifychain` method and test [#155](https://github.com/rust-bitcoin/corepc/pull/155)
12+
- Implement `getnodeaddresses` method and test [#154](https://github.com/rust-bitcoin/corepc/pull/154)
13+
114
# 0.7.0 2025-04-04
215

316
- Fix unloadwallet method [#110](https://github.com/rust-bitcoin/corepc/pull/110)

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-client"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -22,7 +22,7 @@ client-sync = ["jsonrpc"]
2222

2323
[dependencies]
2424
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
25-
types = { package = "corepc-types", version = "0.7.0", default-features = false, features = ["std"] }
25+
types = { package = "corepc-types", version = "0.8.0", default-features = false, features = ["std"] }
2626
log = "0.4"
2727
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2828
serde_json = { version = "1.0.117" }

integration_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ TODO = [] # This is a dirty hack while writing the tests.
5353

5454
[dependencies]
5555
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
56-
node = { package = "corepc-node", version = "0.7.0", default-features = false }
56+
node = { package = "corepc-node", version = "0.8.0", default-features = false }
5757
rand = "0.8.5"
5858
env_logger = "0.9.0"
5959

node/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.8.0 2025-05-21
2+
3+
- Add support for Bitcoin Core 29.0 [#131](https://github.com/rust-bitcoin/corepc/pull/131)
4+
- Add support for Core version 28.1 [#184](https://github.com/rust-bitcoin/corepc/pull/184)
5+
- Add support for Bitcoin Core 0.17.2 [#128](https://github.com/rust-bitcoin/corepc/pull/128)
6+
- Upgrade `zip` in light of RUSTSEC-2020-0071 [#143](https://github.com/rust-bitcoin/corepc/pull/143)
7+
- Drop default features for `zip` [#130](https://github.com/rust-bitcoin/corepc/pull/130)
8+
19
# 0.7.1 2025-05-05
210

311
- backport: bump zip in light of RUSTSEC-2020-0071 [#145](https://github.com/rust-bitcoin/corepc/pull/145)

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-node"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "MIT"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -13,7 +13,7 @@ rust-version = "1.63.0"
1313
exclude = ["tests", "contrib"]
1414

1515
[dependencies]
16-
corepc-client = { version = "0.7.0", features = ["client-sync"] }
16+
corepc-client = { version = "0.8.0", features = ["client-sync"] }
1717
log = { version = "0.4", default-features = false }
1818
which = { version = "3.1.1", default-features = false }
1919
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }

types/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.8.0 2025-05-21
2+
3+
- doc: update docs for now explicit download feature flag [#177](https://github.com/rust-bitcoin/corepc/pull/177)
4+
- Implement all v17 util functions [#163](https://github.com/rust-bitcoin/corepc/pull/163)
5+
- Add support for Bitcoin Core 29.0 [#131](https://github.com/rust-bitcoin/corepc/pull/131)
6+
- Improve the version specific SSOT docs [#142](https://github.com/rust-bitcoin/corepc/pull/142)
7+
- Remove model for `dumpwallet` [#141](https://github.com/rust-bitcoin/corepc/pull/141)
8+
- Implement `pruneblock` method and test [#132](https://github.com/rust-bitcoin/corepc/pull/132)
9+
- Implement `savemempool` method and test [#148](https://github.com/rust-bitcoin/corepc/pull/148)
10+
- Implement `verifychain` method and test [#155](https://github.com/rust-bitcoin/corepc/pull/155)
11+
- Implement `getnodeaddresses` method and test [#154](https://github.com/rust-bitcoin/corepc/pull/154)
12+
- Change `signmessage` returned signature type [#179](https://github.com/rust-bitcoin/corepc/pull/179)
13+
- Add model for `getnodeaddresses` [#191](https://github.com/rust-bitcoin/corepc/pull/191)
14+
115
# 0.7.0 2025-04-04
216

317
- Fix `{create,load}wallet` on `v25` [#108](https://github.com/rust-bitcoin/corepc/pull/108)

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.7.0"
3+
version = "0.8.0"
44
authors = ["Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"

0 commit comments

Comments
 (0)