From 6b1cbcc4b71c3ec4aa2abb3ab6836f86dbf80c34 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 17 Nov 2021 11:54:09 -0800 Subject: [PATCH 1/3] Bump version to 0.14.0-rc.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e4ebf4ec..acd956e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.13.1-dev" +version = "0.14.0-rc.1" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" From c175dd2aae10b0a48430b58e40f0b66fde4bdc48 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 27 Nov 2021 21:00:19 -0800 Subject: [PATCH 2/3] Bump version to 0.14.0 --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48b0bca3..5e06369a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.14.0] - [v0.13.0] + - BIP39 implementation dependency, in `keys::bip39` changed from tiny-bip39 to rust-bip39. - Add new method on the `TxBuilder` to embed data in the transaction via `OP_RETURN`. To allow that a fix to check the dust only on spendable output has been introduced. - Update the `Database` trait to store the last sync timestamp and block height @@ -394,3 +396,4 @@ final transaction is created by calling `finish` on the builder. [v0.11.0]: https://github.com/bitcoindevkit/bdk/compare/v0.10.0...v0.11.0 [v0.12.0]: https://github.com/bitcoindevkit/bdk/compare/v0.11.0...v0.12.0 [v0.13.0]: https://github.com/bitcoindevkit/bdk/compare/v0.12.0...v0.13.0 +[v0.14.0]: https://github.com/bitcoindevkit/bdk/compare/v0.13.0...v0.14.0 diff --git a/Cargo.toml b/Cargo.toml index acd956e2..d14b80a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.14.0-rc.1" +version = "0.14.0" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" diff --git a/src/lib.rs b/src/lib.rs index ea1f2990..aeaf493c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.13.0" +//! bdk = "0.14.0" //! ``` #![cfg_attr( feature = "electrum", From fed4a597284d20cbd69e9c5be5e4586623f70d59 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 27 Nov 2021 22:13:29 -0800 Subject: [PATCH 3/3] Bump version to 0.14.1-dev --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d14b80a1..ddc348ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.14.0" +version = "0.14.1-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org"