diff --git a/CHANGELOG.md b/CHANGELOG.md index 866dc2e1..9b135cba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- 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. - Overhauled sync logic for electrum and esplora. - Unify ureq and reqwest esplora backends to have the same configuration parameters. This means reqwest now has a timeout parameter and ureq has a concurrency parameter. - Fixed esplora fee estimation. + +## [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 - Rename `ConfirmationTime` to `BlockTime` @@ -396,4 +399,5 @@ final transaction is created by calling `finish` on the builder. [v0.10.0]: https://github.com/bitcoindevkit/bdk/compare/v0.9.0...v0.10.0 [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 \ No newline at end of file +[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 e4ebf4ec..ddc348ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.13.1-dev" +version = "0.14.1-dev" 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",