From f1431c3073c7969bd6ccf393cdbeb0aa4b90a802 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 1 Apr 2022 19:15:58 -0700 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce05098..2ff8356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.5.0] + - Fix Wallet.broadcast function, now returns a tx id as a hex string +- Remove creating a new spending Transaction via the PartiallySignedBitcoinTransaction constructor +- Add TxBuilder for creating new spending PartiallySignedBitcoinTransaction +- Add TxBuilder .add_recipient, .fee_rate, and .build functions +- Add TxBuilder .drain_wallet and .drain_to functions +- Update generate cli tool to generate all binding languages and rename to bdk-ffi-bindgen ## [v0.4.0] @@ -30,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.2.0] -[unreleased]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.4.0...HEAD +[unreleased]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.5.0...HEAD +[v0.5.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.3.1...v0.4.0 [v0.3.1]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.2.0...v0.3.0 From d7c5f24fe86c81435344a48e3cf90ea44314bcc7 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 1 Apr 2022 19:16:29 -0700 Subject: [PATCH 2/3] Bump bdk-ffi-bindgen version to 0.2.0 --- bdk-ffi-bindgen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdk-ffi-bindgen/Cargo.toml b/bdk-ffi-bindgen/Cargo.toml index 994fc15..7c12400 100644 --- a/bdk-ffi-bindgen/Cargo.toml +++ b/bdk-ffi-bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-ffi-bindgen" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From 8a556d0ba0d5cd499b39dd65ca073229a45ffce2 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 1 Apr 2022 19:16:53 -0700 Subject: [PATCH 3/3] Bump bdk-ffi version to 0.5.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0573f6f..5392f72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk-ffi" -version = "0.4.1" +version = "0.5.0" authors = ["Steve Myers ", "Sudarsan Balaji "] edition = "2018"