diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0e8695f..1b221a7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,23 @@ Changelog ========= +0.6.0 (2018-10-20) +------------------ +Changed +^^^^^^^ +* Added support for deterministic keypair generation from a 32-byte seed. + See pull request #487 by external contributor @excerebrose +* Pinned cryptoconditions==0.8.0 in setup.py + +Removed +^^^^^^^ +* The send() function was removed. See pull request #483. + +Known issues +^^^^^^^^^^^^ +* Builds of the Handcrafting Transactions page started failing again, + in Travis CI and on ReadTheDocs. + 0.5.3 (2018-09-12) ------------------ Changed diff --git a/README.rst b/README.rst index c904b4b..079fc00 100644 --- a/README.rst +++ b/README.rst @@ -139,6 +139,8 @@ Compatibility Matrix +-----------------------+---------------------------+ | **BigchainDB Server** | **BigchainDB Driver** | +=======================+===========================+ +| ``>= 2.0.0b7`` | ``0.6.0`` | ++-----------------------+---------------------------+ | ``>= 2.0.0b5`` | ``0.5.3`` | +-----------------------+---------------------------+ | ``>= 2.0.0b5`` | ``0.5.2`` | diff --git a/bigchaindb_driver/__init__.py b/bigchaindb_driver/__init__.py index fc14926..af2c34c 100644 --- a/bigchaindb_driver/__init__.py +++ b/bigchaindb_driver/__init__.py @@ -7,4 +7,4 @@ __author__ = 'BigchainDB' __email__ = 'dev@bigchaindb.com' -__version__ = '0.5.3' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index a18ab43..4d22c80 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( name='bigchaindb_driver', - version='0.5.3', + version='0.6.0', description="Python driver for BigchainDB", long_description=readme + '\n\n' + changelog, author="BigchainDB",