Skip to content

Commit 890371a

Browse files
committed
client: Bump version to 0.15.0
In preparation for release add a changelog entry, bump the version, and update the lock files.
1 parent b8b50f7 commit 890371a

6 files changed

Lines changed: 11 additions & 5 deletions

File tree

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
281281

282282
[[package]]
283283
name = "corepc-client"
284-
version = "0.14.0"
284+
version = "0.15.0"
285285
dependencies = [
286286
"bitcoin",
287287
"corepc-types",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
281281

282282
[[package]]
283283
name = "corepc-client"
284-
version = "0.14.0"
284+
version = "0.15.0"
285285
dependencies = [
286286
"bitcoin",
287287
"corepc-types",

bitcoind/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.14.0", path = "../client", features = ["client-sync"] }
17+
corepc-client = { version = "0.15.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 }

client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.15.0 - 2026-05-26
2+
3+
- Add initial support for Bitcoin Core v31 [#598](https://github.com/rust-bitcoin/corepc/pull/598)
4+
- Upgrade to latest `corepc-types` version
5+
- Change `fee_delta` to `SignedAmount` [#605](https://github.com/rust-bitcoin/corepc/pull/605)
6+
17
# 0.14.0 - 2026-05-12
28

39
- Update to use latest `corepc-types v0.13.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.14.0"
3+
version = "0.15.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"

electrsd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = ["tests", "contrib"]
1313

1414
[dependencies]
1515
bitcoind = { version = "0.39.0", path = "../bitcoind" }
16-
corepc-client = { version = "0.14.0", path = "../client" }
16+
corepc-client = { version = "0.15.0", path = "../client" }
1717
electrum-client = { version = "0.24.0", default-features = false }
1818
log = { version = "0.4" }
1919

0 commit comments

Comments
 (0)