Compare commits

...

5 Commits

Author SHA1 Message Date
thunderbiscuit
726808f85d
Merge pull request #191 from thunderbiscuit/release/0.8
Create patch `0.8.1` that pins the uniffi-bindgen dependency
2022-08-30 16:14:15 -04:00
thunderbiscuit
811405879d
Bump version to 0.8.1 2022-08-30 11:58:22 -04:00
thunderbiscuit
bcc6c0f0e8
Pin version of uniffi-bindgen in bdk-ffi-bindgen tool (#189) 2022-08-30 11:56:52 -04:00
thunderbiscuit
138200db07
Bump version to 0.8.0 2022-07-29 13:59:59 -04:00
thunderbiscuit
f1eb8c678d
Update changelog to reflect 0.8.0 additions 2022-07-29 13:37:47 -04:00
3 changed files with 14 additions and 6 deletions

View File

@ -5,11 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
- Update BDK to version 0.20.0
## [v0.8.0]
- Update BDK to version 0.20.0 [#169]
- APIs Added - APIs Added
- `TxBuilder.add_data(data: Vec<u8>)` - `TxBuilder.add_data(data: Vec<u8>)` [#163]
- `Wallet.list_unspent()` returns `Vec<LocalUtxo>` - `Wallet.list_unspent()` returns `Vec<LocalUtxo>` [#158]
- Add coin control methods on TxBuilder [#164]
[#163]: https://github.com/bitcoindevkit/bdk-ffi/pull/163
[#158]: https://github.com/bitcoindevkit/bdk-ffi/pull/158
[#164]: https://github.com/bitcoindevkit/bdk-ffi/pull/164
[#169]: https://github.com/bitcoindevkit/bdk-ffi/pull/169
## [v0.7.0] ## [v0.7.0]
- Update BDK to version 0.19.0 - Update BDK to version 0.19.0
@ -58,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [v0.2.0] ## [v0.2.0]
[unreleased]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.7.0...HEAD [unreleased]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.8.0...HEAD
[v0.8.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.7.0...v0.8.0
[v0.7.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.6.0...v0.7.0 [v0.7.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.6.0...v0.7.0
[v0.6.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.5.0...v0.6.0 [v0.6.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.5.0...v0.6.0
[v0.5.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.4.0...v0.5.0 [v0.5.0]: https://github.com/bitcoindevkit/bdk-ffi/compare/v0.4.0...v0.5.0

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bdk-ffi" name = "bdk-ffi"
version = "0.7.0" version = "0.8.1"
authors = ["Steve Myers <steve@notmandatory.org>", "Sudarsan Balaji <sudarsan.balaji@artfuldev.com>"] authors = ["Steve Myers <steve@notmandatory.org>", "Sudarsan Balaji <sudarsan.balaji@artfuldev.com>"]
edition = "2018" edition = "2018"

View File

@ -6,5 +6,5 @@ edition = "2021"
[dependencies] [dependencies]
anyhow = "=1.0.45" # remove after upgrading to next version of uniffi anyhow = "=1.0.45" # remove after upgrading to next version of uniffi
structopt = "0.3" structopt = "0.3"
uniffi_bindgen = "0.19.3" uniffi_bindgen = "=0.19.3"
camino = "1.0.9" camino = "1.0.9"