Skip to content

Commit 6905189

Browse files
committed
Merge #293: Release 2.1.0
397500e chore(release): update to `2.1.0` (Leonardo Lima) Pull request description: fixes #286 ; depends on #292 ### Description - updates the version to `2.1.0` - updates the `CHANGELOG.md` ### Notes to the reviewers ### Changelog notice ```md - update the bdk_wallet version to `2.1.0` ``` ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `just p` before pushing ACKs for top commit: ValuedMammal: ACK 397500e Tree-SHA512: c8c6e28857a1a4b7ce9428ade728ed5601cb93f993ffb44a4f7568acbd3dbfdea8fe6ec4e4f6cb2cbf3cafb328e6f47e8ef2b7044aaa8499071a2d58303bae8d
2 parents 4621602 + 397500e commit 6905189

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

wallet/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ 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-2.1.0]
11+
12+
### Added
13+
14+
- feat: add justfile #268
15+
- feat(tx_builder): add `TxBuilder::exclude_unconfirmed` and `TxBuilder::exclude_below_confirmations` #258
16+
- feat(wallet): `Wallet::create_multipath()` method for creating wallets from BIP 389 multipath descriptors #275
17+
- feat(wallet): `CreateParams::new_multipath()` for multipath descriptor parameter creation #275
18+
- feat(wallet): Support for 2-path multipath descriptors with automatic receive/change separation #275
19+
- feat(wallet): Enhanced validation for multipath descriptors with descriptive error messages #275
20+
21+
### Fixed
22+
23+
- fix(coin_selection): prefer `Utxo::Local` over `Utxo::Foreign` in `OldestFirstCoinSelection` #265
24+
- fix(tx_builder): preserve insertion order with `TxOrdering::Untouched` #262
25+
- fix(wallet): Recovering from spk-cache now works properly #288
26+
27+
### Changed
28+
29+
- ci: automated update to rustc 1.87.0 #242
30+
- deps: bump `bitcoin` to 0.32.6 #266
31+
- doc(tx_builder): add info about manually selected UTXOs priority #262
32+
- test: refactor and move wallet tests #199
33+
- chore(clippy): fix uninlined format args #287
34+
- docs(wallet): expand docs for `apply_evicted_txs` #270
35+
- docs(wallet): add sync operation to bdk_wallet examples #274
36+
1037
## [wallet-2.0.0-beta.0]
1138

1239
### Added
@@ -1301,3 +1328,5 @@ final transaction is created by calling `finish` on the builder.
13011328
[wallet-1.1.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.1.0
13021329
[wallet-1.2.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.2.0
13031330
[wallet-2.0.0-beta.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.0.0-beta.0
1331+
[wallet-2.0.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.0.0
1332+
[wallet-2.1.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.1.0

wallet/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "2.1.0-alpha.0"
4+
version = "2.1.0"
55
repository = "https://github.com/bitcoindevkit/bdk_wallet"
66
documentation = "https://docs.rs/bdk_wallet"
77
description = "A modern, lightweight, descriptor-based wallet library"

0 commit comments

Comments
 (0)