From ed3a9e42f290adc46fd1708635a8a6dce24bfc59 Mon Sep 17 00:00:00 2001 From: Lennart Date: Mon, 11 Sep 2023 22:53:13 +0200 Subject: [PATCH] RELEASE 0.6.12 - PREPARE FOR TAPROOT --- CHANGELOG | 8 ++++++++ bitcoinlib/config/VERSION | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 446311e1..0a1ad289 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +RELEASE 0.6.12 - Prepare for Taproot +==================================== +* Parse p2tr input scripts +* Fix issues with coinbase segwit transactions +* Ignore extra signatures when creating unlocking script +* Clarify wording of amount parameter in clw +* Add parsing taproot transactions unittests + RELEASE 0.6.11 - Bugfix release =============================== * Fix issues with mempool.space, bcoin, litecoind and bitcoind diff --git a/bitcoinlib/config/VERSION b/bitcoinlib/config/VERSION index 8f1a8694..e9acb99e 100644 --- a/bitcoinlib/config/VERSION +++ b/bitcoinlib/config/VERSION @@ -1 +1 @@ -0.6.11 \ No newline at end of file +0.6.12 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index f19bfab1..c0d1f67c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,7 +45,7 @@ # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.11' +release = '0.6.12' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 16d4b2b7..91c1395e 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ import sys here = os.path.abspath(os.path.dirname(__file__)) -version = '0.6.11' +version = '0.6.12' # Get the long description from the relevant file readmetxt = ''