diff --git a/CHANGELOG.md b/CHANGELOG.md index 48440aea..5122e569 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.10.0] - [v0.9.0] + - Added `RpcBlockchain` in the `AnyBlockchain` struct to allow using Rpc backend where `AnyBlockchain` is used (eg `bdk-cli`) - Removed hard dependency on `tokio`. - Added `flush` method to the `Database` trait to explicitly flush to disk latest changes on the db. @@ -370,3 +372,4 @@ final transaction is created by calling `finish` on the builder. [v0.7.0]: https://github.com/bitcoindevkit/bdk/compare/v0.6.0...v0.7.0 [v0.8.0]: https://github.com/bitcoindevkit/bdk/compare/v0.7.0...v0.8.0 [v0.9.0]: https://github.com/bitcoindevkit/bdk/compare/v0.8.0...v0.9.0 +[v0.10.0]: https://github.com/bitcoindevkit/bdk/compare/v0.9.0...v0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 52af2ae6..adb36231 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.9.1-dev" +version = "0.10.1-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" @@ -12,7 +12,7 @@ readme = "README.md" license = "MIT OR Apache-2.0" [dependencies] -bdk-macros = { path = "macros"} # TODO: Change this to version number after next release. +bdk-macros = "0.5" log = "^0.4" miniscript = "^6.0" bitcoin = { version = "^0.27", features = ["use-serde", "base64"] } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 492e2e19..efec36d1 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-macros" -version = "0.4.0" +version = "0.5.0" authors = ["Alekos Filini "] edition = "2018" homepage = "https://bitcoindevkit.org" diff --git a/src/lib.rs b/src/lib.rs index ddf58f79..b340deb2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.9.0" +//! bdk = "0.10.0" //! ``` #![cfg_attr( feature = "electrum",