diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd8a332..0ca5317f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 #### Added - Added ability to analyze a `PSBT` to check which and how many signatures are already available +## [v0.5.0] - [v0.4.0] + ### Misc #### Changed - Updated `electrum-client` to version `0.7` @@ -300,3 +302,4 @@ final transaction is created by calling `finish` on the builder. [v0.2.0]: https://github.com/bitcoindevkit/bdk/compare/0.1.0-beta.1...v0.2.0 [v0.3.0]: https://github.com/bitcoindevkit/bdk/compare/v0.2.0...v0.3.0 [v0.4.0]: https://github.com/bitcoindevkit/bdk/compare/v0.3.0...v0.4.0 +[v0.5.0]: https://github.com/bitcoindevkit/bdk/compare/v0.4.0...v0.5.0 diff --git a/Cargo.toml b/Cargo.toml index 6f57bdc6..2ec8b94e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.4.1-dev" +version = "0.5.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 = "^0.3" +bdk-macros = "^0.4" log = "^0.4" miniscript = "5.1" bitcoin = { version = "^0.26", features = ["use-serde"] } @@ -59,8 +59,8 @@ test-electrum = ["electrum"] test-md-docs = ["electrum"] [dev-dependencies] -bdk-testutils = { path = "./testutils"} -bdk-testutils-macros = { path = "./testutils-macros"} +bdk-testutils = "0.4" +bdk-testutils-macros = "0.4" serial_test = "0.4" lazy_static = "1.4" env_logger = "0.7" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 41bcd28e..492e2e19 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-macros" -version = "0.3.0" +version = "0.4.0" authors = ["Alekos Filini "] edition = "2018" homepage = "https://bitcoindevkit.org" diff --git a/src/lib.rs b/src/lib.rs index 44d067d9..254a7b2a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,7 @@ //! interact with the bitcoin P2P network. //! //! ```toml -//! bdk = "0.4.0" +//! bdk = "0.5.0" //! ``` //! //! ## Sync the balance of a descriptor diff --git a/testutils-macros/Cargo.toml b/testutils-macros/Cargo.toml index 8fd84703..06a5b7c2 100644 --- a/testutils-macros/Cargo.toml +++ b/testutils-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-testutils-macros" -version = "0.3.0" +version = "0.4.0" authors = ["Alekos Filini "] edition = "2018" homepage = "https://bitcoindevkit.org" diff --git a/testutils/Cargo.toml b/testutils/Cargo.toml index bdd364f7..8f7f2618 100644 --- a/testutils/Cargo.toml +++ b/testutils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-testutils" -version = "0.3.0" +version = "0.4.0" authors = ["Alekos Filini "] edition = "2018" homepage = "https://bitcoindevkit.org"