Merge branch 'release/0.5.0' of github.com:bitcoindevkit/bdk

This commit is contained in:
Alekos Filini 2021-03-17 22:27:44 +01:00
commit f786f0e624
No known key found for this signature in database
GPG Key ID: 431401E4A4530061
6 changed files with 11 additions and 8 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "bdk"
version = "0.4.1-dev"
version = "0.5.1-dev"
edition = "2018"
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
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"

View File

@ -1,6 +1,6 @@
[package]
name = "bdk-macros"
version = "0.3.0"
version = "0.4.0"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
edition = "2018"
homepage = "https://bitcoindevkit.org"

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "bdk-testutils-macros"
version = "0.3.0"
version = "0.4.0"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
edition = "2018"
homepage = "https://bitcoindevkit.org"

View File

@ -1,6 +1,6 @@
[package]
name = "bdk-testutils"
version = "0.3.0"
version = "0.4.0"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
edition = "2018"
homepage = "https://bitcoindevkit.org"