Skip to content

Commit 56ab2ac

Browse files
committed
Bump versions to 0.11.0
In preparation for release add a changelog entry, bump the version, and update the lockfiles.
1 parent b48e8e1 commit 56ab2ac

File tree

8 files changed

+36
-11
lines changed

8 files changed

+36
-11
lines changed

Cargo-minimal.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
265265

266266
[[package]]
267267
name = "corepc-client"
268-
version = "0.10.0"
268+
version = "0.11.0"
269269
dependencies = [
270270
"bitcoin",
271271
"corepc-types",
@@ -277,7 +277,7 @@ dependencies = [
277277

278278
[[package]]
279279
name = "corepc-node"
280-
version = "0.10.0"
280+
version = "0.11.0"
281281
dependencies = [
282282
"anyhow",
283283
"bitcoin_hashes",
@@ -295,7 +295,7 @@ dependencies = [
295295

296296
[[package]]
297297
name = "corepc-types"
298-
version = "0.10.1"
298+
version = "0.11.0"
299299
dependencies = [
300300
"bitcoin",
301301
"serde",

Cargo-recent.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
265265

266266
[[package]]
267267
name = "corepc-client"
268-
version = "0.10.0"
268+
version = "0.11.0"
269269
dependencies = [
270270
"bitcoin",
271271
"corepc-types",
@@ -277,7 +277,7 @@ dependencies = [
277277

278278
[[package]]
279279
name = "corepc-node"
280-
version = "0.10.0"
280+
version = "0.11.0"
281281
dependencies = [
282282
"anyhow",
283283
"bitcoin_hashes",
@@ -295,7 +295,7 @@ dependencies = [
295295

296296
[[package]]
297297
name = "corepc-types"
298-
version = "0.10.1"
298+
version = "0.11.0"
299299
dependencies = [
300300
"bitcoin",
301301
"serde",

client/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.11.0 - 2025-11-18
2+
3+
- Add support for Bitcoin Core 30.0 [#387](https://github.com/rust-bitcoin/corepc/pull/387),
4+
[#388](https://github.com/rust-bitcoin/corepc/pull/388).
5+
- Bump MSRV to 1.75.0 [#405](https://github.com/rust-bitcoin/corepc/pull/405)
6+
- Update to use latest `types v0.11.0`.
7+
18
# 0.10.0 - 2025-10-07
29

310
- Update to use latest `types v0.10.0`.

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.10.0"
3+
version = "0.11.0"
44
authors = ["Tobin C. Harding <[email protected]>", "Jamil Lambert <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -25,7 +25,7 @@ bitcoin = { version = "0.32.0", default-features = false, features = ["std", "se
2525
log = "0.4"
2626
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2727
serde_json = { version = "1.0.117" }
28-
types = { package = "corepc-types", version = "0.10.0", path = "../types", default-features = false, features = ["std"] }
28+
types = { package = "corepc-types", version = "0.11.0", path = "../types", default-features = false, features = ["std"] }
2929

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

node/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.11.0 - 2025-11-18
2+
3+
- Bump MSRV to 1.75.0 [#405](https://github.com/rust-bitcoin/corepc/pull/405)
4+
- Update to use latest `client v0.11.0`.
5+
6+
# 0.10.1 2025-11-18
7+
8+
- Remove `doc_auto_cfg` to fix build on docs.rs
9+
110
# 0.10.0 - 2025-10-07
211

312
- Update to use latest `client v0.10.0`.

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.10.0"
3+
version = "0.11.0"
44
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "MIT"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -14,7 +14,7 @@ exclude = ["tests", "contrib"]
1414

1515
[dependencies]
1616
anyhow = { version = "1.0.66", default-features = false, features = ["std"] }
17-
corepc-client = { version = "0.10.0", path = "../client", features = ["client-sync"] }
17+
corepc-client = { version = "0.11.0", path = "../client", features = ["client-sync"] }
1818
log = { version = "0.4", default-features = false }
1919
serde_json = { version = "1.0.117", default-features = false }
2020
tempfile = { version = "3", default-features = false }

types/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.11.0 - 2025-11-18
2+
3+
- Add support for Bitcoin Core 30.0 [#387](https://github.com/rust-bitcoin/corepc/pull/387),
4+
[#388](https://github.com/rust-bitcoin/corepc/pull/388),
5+
[#409](https://github.com/rust-bitcoin/corepc/pull/409),
6+
[#410](https://github.com/rust-bitcoin/corepc/pull/410),
7+
[#412](https://github.com/rust-bitcoin/corepc/pull/412).
8+
- Bump MSRV to 1.75.0 [#405](https://github.com/rust-bitcoin/corepc/pull/405)
9+
110
# 0.10.1 - 2025-10-10
211

312
- v24+ should use the correct `GetRawMempoolVerbose` [#381](https://github.com/rust-bitcoin/corepc/pull/381)

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

0 commit comments

Comments
 (0)