Skip to content

Commit 542f967

Browse files
committed
Merge #1970: chore: bump bdk_chain to 0.23.0
6afb6a6 chore: update changelogs (valued mammal) 340bdc1 chore: bump `bdk_chain` to 0.23.0 (valued mammal) Pull request description: core to 0.6.0 bitcoind_rpc to 0.20.0 electrum to 0.23.0 esplora to 0.22.0 file_store 0.21.0 testenv to 0.13.0 TODO - [x] Update changelogs fixes #1969 ACKs for top commit: oleonardolima: ACK 6afb6a6 Tree-SHA512: 844c4c3db714877351bba01eedca476d73973fa88be41c13220936dbec4853097d3322f8018b74e9a80233f34e3ed5a57a02b46cc3c85cdf28b6e5890077f34d
2 parents e217542 + 6afb6a6 commit 542f967

File tree

14 files changed

+74
-14
lines changed

14 files changed

+74
-14
lines changed

crates/bitcoind_rpc/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ 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.20.0]
11+
12+
### Changed
13+
14+
- bump bdk_core to 0.6.0
15+
1016
## [bitcoind_rpc-0.19.0]
1117

12-
## Changed
18+
### Changed
1319

1420
- feat(rpc)!: Update Emitter::mempool to support evicted_at #1857
1521
- Change Emitter::mempool to return MempoolEvents which contain mempool-eviction data.
@@ -31,3 +37,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3137
[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1
3238
[bitcoind_rpc-0.18.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.18.0
3339
[bitcoind_rpc-0.19.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.19.0
40+
[bitcoind_rpc-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.20.0

crates/bitcoind_rpc/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_bitcoind_rpc"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"
@@ -18,7 +18,7 @@ workspace = true
1818
[dependencies]
1919
bitcoin = { version = "0.32.0", default-features = false }
2020
bitcoincore-rpc = { version = "0.19.0" }
21-
bdk_core = { path = "../core", version = "0.5.0", default-features = false }
21+
bdk_core = { path = "../core", version = "0.6.0", default-features = false }
2222

2323
[dev-dependencies]
2424
bdk_bitcoind_rpc = { path = "." }

crates/chain/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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.0]
11+
12+
### Added
13+
14+
- feat!(chain): implement `first_seen` tracking #1950
15+
- fix(chain): persist `first_seen` #1966
16+
- Persist spks derived from KeychainTxOutIndex #1963
17+
18+
### Changed
19+
20+
- fix(docs): `merge_chains` outdated documentation #1806
21+
- chore: create and apply rustfmt.toml #1946
22+
- chore: Update rust-version to 1.86.0 #1955
23+
- bump bdk_core to 0.6.0
24+
1025
## [chain-0.22.0]
1126

1227
### Added
@@ -41,3 +56,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4156

4257
[chain-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.21.1
4358
[chain-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.22.0
59+
[chain-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.23.0

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.22.0"
3+
version = "0.23.0"
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.5.0", default-features = false }
20+
bdk_core = { path = "../core", version = "0.6.0", 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.0]
13+
14+
### Added
15+
16+
- Add `is_empty` methods to `TxUpdate` and `{}_Response` types #1961
17+
1218
## [core-0.5.0]
1319

1420
### Added
@@ -36,3 +42,4 @@ This is because requests now have a `start_time`, instead of specifying a `seen_
3642

3743
[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1
3844
[core-0.5.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.5.0
45+
[core-0.6.0]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.6.0

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.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"

crates/electrum/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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.0]
11+
12+
### Changed
13+
14+
- bump bdk_core to 0.6.0
15+
1016
## [electrum-0.22.0]
1117

1218
### Fixed
@@ -37,3 +43,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3743
[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1
3844
[electrum-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.21.0
3945
[electrum-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.22.0
46+
[electrum-0.23.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.23.0

crates/electrum/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_electrum"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -13,7 +13,7 @@ readme = "README.md"
1313
workspace = true
1414

1515
[dependencies]
16-
bdk_core = { path = "../core", version = "0.5.0" }
16+
bdk_core = { path = "../core", version = "0.6.0" }
1717
electrum-client = { version = "0.23.1", features = [ "proxy" ], default-features = false }
1818

1919
[dev-dependencies]

crates/esplora/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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+
## [esplora-0.22.0]
11+
12+
### Changed
13+
14+
- bump bdk_core to 0.6.0
15+
1016
## [esplora-0.21.0]
1117

1218
### Changed
@@ -25,3 +31,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2531

2632
[esplora-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.20.1
2733
[esplora-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.21.0
34+
[esplora-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.22.0

crates/esplora/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_esplora"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -15,7 +15,7 @@ readme = "README.md"
1515
workspace = true
1616

1717
[dependencies]
18-
bdk_core = { path = "../core", version = "0.5.0", default-features = false }
18+
bdk_core = { path = "../core", version = "0.6.0", default-features = false }
1919
esplora-client = { version = "0.12.0", default-features = false }
2020
async-trait = { version = "0.1.66", optional = true }
2121
futures = { version = "0.3.26", optional = true }

0 commit comments

Comments
 (0)