Skip to content

Commit 8be791a

Browse files
committedFeb 5, 2025··
Bump bdk_wallet to v1.1.0
bdk_bitcoind_rpc to 0.18.0 bdk_electrum to 0.21.0
1 parent 0a11c80 commit 8be791a

File tree

7 files changed

+42
-7
lines changed

7 files changed

+42
-7
lines changed
 

‎crates/bitcoind_rpc/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ Contributors do not need to change this file but do need to add changelog detail
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [bitcoind_rpc-0.18.0]
11+
12+
### Added
13+
14+
- Added `bip158` module as a means of updating `bdk_chain` structures #1614
15+
1016
## [bitcoind_rpc-0.17.1]
1117

1218
### Changed
1319

1420
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
1521

16-
[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1
22+
[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1
23+
[bitcoind_rpc-0.18.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.18.0

‎crates/bitcoind_rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_bitcoind_rpc"
3-
version = "0.17.1"
3+
version = "0.18.0"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"

‎crates/core/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ Contributors do not need to change this file but do need to add changelog detail
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## Unreleased
11+
12+
- test: add tests for `Merge` trait #1738
13+
1014
## [core-0.4.1]
1115

1216
### Changed
1317

1418
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
1519

16-
[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1
20+
[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1

‎crates/electrum/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ Contributors do not need to change this file but do need to add changelog detail
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [electrum-0.21.0]
11+
12+
- Bump crate MSRV to 1.75.0
13+
- deps: bump `electrum-client` to 0.23.0
14+
1015
## [electrum-0.20.1]
1116

1217
### Changed
1318

1419
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
1520

16-
[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1
21+
[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1
22+
[electrum-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.21.0

‎crates/electrum/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_electrum"
3-
version = "0.20.1"
3+
version = "0.21.0"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -14,7 +14,7 @@ workspace = true
1414

1515
[dependencies]
1616
bdk_core = { path = "../core", version = "0.4.1" }
17-
electrum-client = { version = "0.22", features = [ "proxy" ], default-features = false }
17+
electrum-client = { version = "0.23", features = [ "proxy" ], default-features = false }
1818

1919
[dev-dependencies]
2020
bdk_testenv = { path = "../testenv" }

‎crates/wallet/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ Contributors do not need to change this file but do need to add changelog detail
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [wallet-1.1.0]
11+
12+
### Added
13+
14+
- `Wallet` can now be constructed using `Network::Testnet4` #1805
15+
- test: create tx locktime cltv for a specific time #1682
16+
- docs: add architectural decision records (ADR) #1592
17+
18+
### Changed
19+
20+
- Changed the default transaction version number to version 2 for TxBuilder. #1789
21+
22+
### Fixed
23+
24+
- Improve safety on finalize psbt #1790
25+
- Fixed an issue preventing `build_fee_bump` from re-targeting the drain value for some wallets #1812
26+
1027
## [wallet-1.0.0]
1128

1229
### Summary
@@ -1237,3 +1254,4 @@ final transaction is created by calling `finish` on the builder.
12371254
[v1.0.0-beta.5]: https://github.com/bitcoindevkit/bdk/releases/tag/v1.0.0-beta.5
12381255
[v1.0.0-beta.6]: https://github.com/bitcoindevkit/bdk/releases/tag/v1.0.0-beta.6
12391256
[wallet-1.0.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.0.0
1257+
[wallet-1.1.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.1.0

‎crates/wallet/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bdk_wallet"
33
homepage = "https://bitcoindevkit.org"
4-
version = "1.0.0"
4+
version = "1.1.0"
55
repository = "https://github.com/bitcoindevkit/bdk"
66
documentation = "https://docs.rs/bdk"
77
description = "A modern, lightweight, descriptor-based wallet library"

0 commit comments

Comments
 (0)
Please sign in to comment.