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