From 2c01b6118f3291c2918a60cac635f26df1780dac Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Thu, 4 Aug 2022 11:59:56 +0200 Subject: [PATCH 1/3] Bump version to 0.21.0-rc.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9c910929..32a98a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.20.1-dev" +version = "0.21.0-rc.1" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" From e2bd96012a08137e4f6776c9192d5247ae20df0b Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Thu, 11 Aug 2022 14:39:18 +0200 Subject: [PATCH 2/3] Bump version to 0.21.0 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ec9da4a..87b11926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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] + +## [v0.21.0] - [v0.20.0] + - Add `descriptor::checksum::get_checksum_bytes` method. - Add `Excess` enum to handle remaining amount after coin selection. - Move change creation from `Wallet::create_tx` to `CoinSelectionAlgorithm::coin_select`. @@ -488,4 +491,5 @@ final transaction is created by calling `finish` on the builder. [v0.18.0]: https://github.com/bitcoindevkit/bdk/compare/v0.17.0...v0.18.0 [v0.19.0]: https://github.com/bitcoindevkit/bdk/compare/v0.18.0...v0.19.0 [v0.20.0]: https://github.com/bitcoindevkit/bdk/compare/v0.19.0...v0.20.0 -[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.20.0...HEAD +[v0.21.0]: https://github.com/bitcoindevkit/bdk/compare/v0.20.0...v0.21.0 +[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.21.0...HEAD diff --git a/Cargo.toml b/Cargo.toml index 32a98a9f..7c153a19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.21.0-rc.1" +version = "0.21.0" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" diff --git a/src/lib.rs b/src/lib.rs index 4c4bb3c2..b3195fba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -44,7 +44,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.20.0" +//! bdk = "0.21.0" //! ``` //! //! # Examples From 8026bd9476fc5a89baa86ea2a8707a9d341d3743 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Thu, 11 Aug 2022 20:56:03 +0200 Subject: [PATCH 3/3] Bump version to 0.21.1-dev --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7c153a19..d61e4f37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.21.0" +version = "0.21.1-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org"