Skip to content

Commit

Permalink
Merge #1822: Bump bdk_wallet to v1.1.0
Browse files Browse the repository at this point in the history
8be791a Bump bdk_wallet to v1.1.0 (valued mammal)

Pull request description:

  Bump bdk_wallet to v1.1.0

  bdk_bitcoind_rpc to 0.18.0
  bdk_electrum to 0.21.0

  fixes #1821

ACKs for top commit:
  notmandatory:
    ACK 8be791a

Tree-SHA512: 0028cd608206dbf549c5a93255953f4486570f019d64702587b344de66c4cc8e6619d9c6057729e788726b386729a6bd09f2c69a5642ddd240d67464c0d6a4c1
  • Loading branch information
ValuedMammal committed Feb 5, 2025
2 parents 0a11c80 + 8be791a commit cc15e5d
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 7 deletions.
9 changes: 8 additions & 1 deletion crates/bitcoind_rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [bitcoind_rpc-0.18.0]

### Added

- Added `bip158` module as a means of updating `bdk_chain` structures #1614

## [bitcoind_rpc-0.17.1]

### Changed

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

[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1
[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1
[bitcoind_rpc-0.18.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.18.0
2 changes: 1 addition & 1 deletion crates/bitcoind_rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_bitcoind_rpc"
version = "0.17.1"
version = "0.18.0"
edition = "2021"
rust-version = "1.63"
homepage = "https://bitcoindevkit.org"
Expand Down
6 changes: 5 additions & 1 deletion crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

- test: add tests for `Merge` trait #1738

## [core-0.4.1]

### Changed

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

[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1
[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1
8 changes: 7 additions & 1 deletion crates/electrum/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [electrum-0.21.0]

- Bump crate MSRV to 1.75.0
- deps: bump `electrum-client` to 0.23.0

## [electrum-0.20.1]

### Changed

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

[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1
[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1
[electrum-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.21.0
4 changes: 2 additions & 2 deletions crates/electrum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_electrum"
version = "0.20.1"
version = "0.21.0"
edition = "2021"
homepage = "https://bitcoindevkit.org"
repository = "https://github.com/bitcoindevkit/bdk"
Expand All @@ -14,7 +14,7 @@ workspace = true

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

[dev-dependencies]
bdk_testenv = { path = "../testenv" }
Expand Down
18 changes: 18 additions & 0 deletions crates/wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [wallet-1.1.0]

### Added

- `Wallet` can now be constructed using `Network::Testnet4` #1805
- test: create tx locktime cltv for a specific time #1682
- docs: add architectural decision records (ADR) #1592

### Changed

- Changed the default transaction version number to version 2 for TxBuilder. #1789

### Fixed

- Improve safety on finalize psbt #1790
- Fixed an issue preventing `build_fee_bump` from re-targeting the drain value for some wallets #1812

## [wallet-1.0.0]

### Summary
Expand Down Expand Up @@ -1237,3 +1254,4 @@ final transaction is created by calling `finish` on the builder.
[v1.0.0-beta.5]: https://github.com/bitcoindevkit/bdk/releases/tag/v1.0.0-beta.5
[v1.0.0-beta.6]: https://github.com/bitcoindevkit/bdk/releases/tag/v1.0.0-beta.6
[wallet-1.0.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.0.0
[wallet-1.1.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-1.1.0
2 changes: 1 addition & 1 deletion crates/wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bdk_wallet"
homepage = "https://bitcoindevkit.org"
version = "1.0.0"
version = "1.1.0"
repository = "https://github.com/bitcoindevkit/bdk"
documentation = "https://docs.rs/bdk"
description = "A modern, lightweight, descriptor-based wallet library"
Expand Down

0 comments on commit cc15e5d

Please sign in to comment.