From 48e9984791e0ede99141610483725b2e30f57ee9 Mon Sep 17 00:00:00 2001 From: Cryp Toon Date: Sat, 15 Jun 2024 12:09:15 +0200 Subject: [PATCH] RELEASE 0.7.0b1 - Add bumpfee, bitcoin core connection and many more --- CHANGELOG | 22 ++++++++++++++++++++++ bitcoinlib/config/VERSION | 2 +- docs/conf.py | 4 ++-- setup.cfg | 2 +- 4 files changed, 26 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1a066191..407c83a6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,25 @@ +RELEASE 0.7.0 BETA - Add bumpfee, bitcoin core connection and many more +======================================================================= +* Improve connections with bitcoin core wallet +* Support multiple bitcoin core wallets +* Allow to bump transaction fee +* Allow to remove old unconfirmed transactions from wallet +* Use segwit as default for all classes +* Add debugger to Script class +* Improve Script class +* Cleanup Input class and improve speed +* Improve fee estimates +* Fix various provider issues +* Fix MySQL en PostgreSQL issues and unittesting +* Fix p2pk script issues +* Fix issues with redeemscripts +* Rename Transaction.offline to Transaction.broadcast +* Allow to disable random transaction output order +* Use timezone UTC for all dates +* Fix SQLAlchemy session and database issues +* Check and update examples and documentation +* Add support for Python 3.12 + RELEASE 0.6.15 - Small bugfixes, documentation updates ====================================================== * Some small bugfixes diff --git a/bitcoinlib/config/VERSION b/bitcoinlib/config/VERSION index 7e3c84c3..7cee47d7 100644 --- a/bitcoinlib/config/VERSION +++ b/bitcoinlib/config/VERSION @@ -1 +1 @@ -0.6.15 \ No newline at end of file +0.7.0b1 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index ab253b49..d565e212 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,9 +43,9 @@ # built documents. # # The short X.Y version. -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.6.15' +release = '0.7.0b1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index ad707f2b..d5705412 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = bitcoinlib -version = 0.6.15 +version = 0.7.0b1 url = http://github.com/1200wd/bitcoinlib author = 1200wd author_email = info@1200wd.com