From 7a9a6f516985bd7608a59d7a62a5a352d1a88a02 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 5 Aug 2022 09:45:33 -0400 Subject: [PATCH 1/4] Bump bdk-ffi to v0.8.0 tag --- bdk-ffi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdk-ffi b/bdk-ffi index 80ed21e..138200d 160000 --- a/bdk-ffi +++ b/bdk-ffi @@ -1 +1 @@ -Subproject commit 80ed21e4c9e61d6224e074258229a4d6da6cc049 +Subproject commit 138200db078cbd2b8a8d32ca8f4360bcd4b1eccd From d633d6d2a915ec4bc311d72f8c02e7b5f0a7bf19 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 5 Aug 2022 10:30:23 -0400 Subject: [PATCH 2/4] Update changelog to reflect 0.2.0 changes --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0dff5c..bc24f09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic ## [Unreleased] +## [0.1.0-0.2.0] +### Added +- Update BDK to version `0.20.0` +- APIs Added + - TxBuilder.add_data(data) + - Wallet.list_unspent() returns a list of local UTXOs + - Add coin control methods on TxBuilder + +### Fixed +- Tox tests + ## [0.0.5-0.1.0] ### Added - Community related files (bug report, feature request, and pull request templates) @@ -35,4 +46,5 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic [Semantic Versioning]: https://semver.org/spec/v2.0.0.html [unreleased]: https://github.com/bitcoindevkit/bdk-python/compare/v0.0.5...HEAD [0.0.1-0.0.5]: https://github.com/bitcoindevkit/bdk-python/compare/58f189f987cc644a1d86e965623c8f50904588ad...v0.0.5 -[0.0.5-0.1.0]: https://github.com/bitcoindevkit/bdk-python/compare/v0.0.5...v0.1.0 \ No newline at end of file +[0.0.5-0.1.0]: https://github.com/bitcoindevkit/bdk-python/compare/v0.0.5...v0.1.0 +[0.1.0-0.2.0]: https://github.com/bitcoindevkit/bdk-python/compare/v0.1.0...v0.2.0 \ No newline at end of file From 66376f05ecdcf09245ad8ab175ae6d7ae558dbde Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 5 Aug 2022 10:31:24 -0400 Subject: [PATCH 3/4] Refactors to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 25e6e03..f44f715 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ print(f"Wallet balance is: {balance}") """ rust_ext = RustExtension( - "bdkpython.bdkffi", + target="bdkpython.bdkffi", path="./bdk-ffi/Cargo.toml", binding=Binding.NoBinding, ) @@ -60,7 +60,7 @@ rust_ext = RustExtension( setup( name='bdkpython', version='0.2.0.dev0', - description="The Python language bindings for the Bitcoin Dev Kit", + description="The Python language bindings for the Bitcoin Development Kit", long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', rust_extensions=[rust_ext], From d916fbd7bea91aeadd022f6c642f89cf62d57f64 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Sun, 7 Aug 2022 13:26:41 -0400 Subject: [PATCH 4/4] Fix CHANGELOG.md Co-authored-by: Steve Myers --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc24f09..62b78bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,7 +44,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/ [Semantic Versioning]: https://semver.org/spec/v2.0.0.html -[unreleased]: https://github.com/bitcoindevkit/bdk-python/compare/v0.0.5...HEAD +[unreleased]: https://github.com/bitcoindevkit/bdk-python/compare/v0.2.0...HEAD [0.0.1-0.0.5]: https://github.com/bitcoindevkit/bdk-python/compare/58f189f987cc644a1d86e965623c8f50904588ad...v0.0.5 [0.0.5-0.1.0]: https://github.com/bitcoindevkit/bdk-python/compare/v0.0.5...v0.1.0 [0.1.0-0.2.0]: https://github.com/bitcoindevkit/bdk-python/compare/v0.1.0...v0.2.0 \ No newline at end of file