Skip to content

Commit 8f281da

Browse files
committed
Merge #2023: chore(release): bump bdk-chain to 0.23.2
d0c691f chore(release): bump `bdk-chain` to `0.23.2` (Leonardo Lima) Pull request description: fixes #2022 <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description It bumps the required versions for the next releases and also each CHANGELOG.md - bump `bdk_core` to `0.6.2` - bump `bitcoind_rpc` to `0.22.0` - bump `file_store` to `0.22.0`. - bump `bdk_electrum` to `0.23.2` <!-- Describe the purpose of this PR, what's being adding and/or fixed --> ### Checklists #### All Submissions: * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) ACKs for top commit: ValuedMammal: ACK d0c691f LagginTimes: ACK d0c691f notmandatory: ACK d0c691f evanlinjin: ACK d0c691f Tree-SHA512: e1332984801ffe011ffbaa0e4c41bf1f992651081b5518422a544f8b7a98a8cbd22a2900ec4e0199a6501b2c0f5e909272eaa08618abaa91eb4e505e32676c02
2 parents 9613fd2 + d0c691f commit 8f281da

File tree

10 files changed

+69
-8
lines changed

10 files changed

+69
-8
lines changed

crates/bitcoind_rpc/CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ 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.22.0]
11+
12+
### Fixed
13+
- `FilterIter` now handles reorgs to ensure consistency of the header chain. #2000
14+
15+
### Changed
16+
- `Event` is now a struct instead of enum #2000
17+
18+
### Added
19+
- `FilterIter::new` constructor that takes as input a reference to the RPC client, checkpoint, and a list of SPKs. #2000
20+
- `Error::ReorgDepthExceeded` variant. #2000
21+
- `Error::TryFromInt` variant. #2000
22+
23+
### Removed
24+
- `FilterIter::new_with_height` method #2000
25+
- `FilterIter::new_with_checkpoint` method #2000
26+
- `EventInner` type #2000
27+
- `FilterIter::get_tip` method #2000
28+
- `FilterIter::chain_update` method #2000
29+
- `Error::NoScripts` variant #2000
30+
1031
## [bitcoind_rpc-0.21.0]
1132

1233
### Added
@@ -53,4 +74,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5374
[bitcoind_rpc-0.18.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.18.0
5475
[bitcoind_rpc-0.19.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.19.0
5576
[bitcoind_rpc-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.20.0
56-
[bitcoind_rpc-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.21.0
77+
[bitcoind_rpc-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.21.0
78+
[bitcoind_rpc-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.22.0

crates/bitcoind_rpc/Cargo.toml

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

crates/chain/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +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+
## [chain-0.23.2]
11+
12+
### Added
13+
14+
- Added a doctest illustrating how to filter confirmed balance results by simulating a minimum confirmation threshold via `chain_tip` height. #2007
15+
16+
### Fixed
17+
18+
- Behavior of `IndexedTxGraph` methods (`apply_block_relevant`, `batch_insert_relevant` and `batch_insert_relevant_unconfirmed`) to also consider conflicts of spk-relevant transactions as relevant. #2008
19+
1020
## [chain-0.23.1]
1121

1222
### Added
@@ -74,4 +84,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7484
[chain-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.21.1
7585
[chain-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.22.0
7686
[chain-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.0
77-
[chain-0.23.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.1
87+
[chain-0.23.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.1
88+
[chain-0.23.2]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.2

crates/chain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_chain"
3-
version = "0.23.1"
3+
version = "0.23.2"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"
@@ -17,7 +17,7 @@ workspace = true
1717

1818
[dependencies]
1919
bitcoin = { version = "0.32.0", default-features = false }
20-
bdk_core = { path = "../core", version = "0.6.1", default-features = false }
20+
bdk_core = { path = "../core", version = "0.6.2", default-features = false }
2121
serde = { version = "1", optional = true, features = ["derive", "rc"] }
2222
miniscript = { version = "12.3.1", optional = true, default-features = false }
2323

crates/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Unreleased
1111

12+
## [core-0.6.2]
13+
14+
### Added
15+
16+
- Added two new convenience methods: `floor_at` and `floor_below` for getting the checkpoint at a floored height or by an offset from the tip. #2007
17+
1218
## [core-0.6.1]
1319

1420
### Changed
@@ -50,3 +56,4 @@ This is because requests now have a `start_time`, instead of specifying a `seen_
5056
[core-0.5.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.5.0
5157
[core-0.6.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.0
5258
[core-0.6.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.1
59+
[core-0.6.2]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.2

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_core"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"

crates/electrum/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ 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.23.2]
11+
12+
### Added
13+
14+
- Add a new `populate_anchor_cache` method. #2005
15+
16+
### Changed
17+
18+
- Update the `populate_tx_cache` method documentation. #2005
19+
20+
### Fixed
21+
22+
- Update the `batch_fetch_anchors` to no longer uses a potentially stale hash as the anchor. #2011
23+
1024
## [electrum-0.23.1]
1125

1226
### Added
@@ -61,3 +75,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6175
[electrum-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.22.0
6276
[electrum-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.0
6377
[electrum-0.23.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.1
78+
[electrum-0.23.2]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.2

crates/electrum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_electrum"
3-
version = "0.23.1"
3+
version = "0.23.2"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"

crates/file_store/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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+
## [file_store-0.22.0]
11+
12+
### Changed
13+
- `Changeset` field of `StoreErrorWithDump` is now of type `Option<Box<C>>` #1998
14+
1015
## [file_store-0.21.1]
1116

1217
### Added
@@ -61,3 +66,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6166
[file_store-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.20.0
6267
[file_store-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.21.0
6368
[file_store-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.21.1
69+
[file_store-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/file_store-0.22.0

crates/file_store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_file_store"
3-
version = "0.21.1"
3+
version = "0.22.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/bitcoindevkit/bdk"

0 commit comments

Comments
 (0)