From 6f4735754305be4cc01c26ec028be564ed796745 Mon Sep 17 00:00:00 2001 From: codegeschrei Date: Thu, 14 Jun 2018 10:42:00 +0200 Subject: [PATCH] prepare release (#443) * prepare release * Problem: the development status is still beta Solution: set the development status to stable --- CHANGELOG.rst | 17 +++++++++++++++++ README.rst | 2 ++ bigchaindb_driver/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7111cb2..231c462 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Changelog ========= +0.5.0 (2018-06-14) +--------------------- +Added +^^^^^ +* Added three new methods to send/post a transaction as discussed `here `_: + + * ``send_commit`` + * ``send_async`` + * ``send_sync`` + +Deprecated +^^^^^^^^^^ +* ``send()`` under ``TransactionEndpoint``, and available + via ``BigchainDB.transactions``. Replaced by the above three methods: + ``send_commit()``, ``send_async()``, and ``send_sync()``. + + 0.5.0a4 (2018-05-07) --------------------- * `Removed dependencies from BigchainDB Server package `_. diff --git a/README.rst b/README.rst index 163fa8d..685b3f9 100644 --- a/README.rst +++ b/README.rst @@ -131,6 +131,8 @@ Compatibility Matrix +-----------------------+---------------------------+ | **BigchainDB Server** | **BigchainDB Driver** | +=======================+===========================+ +| ``>= 2.0.0b1`` | ``0.5.0`` | ++-----------------------+---------------------------+ | ``>= 2.0.0a3`` | ``0.5.0a4`` | +-----------------------+---------------------------+ | ``>= 2.0.0a2`` | ``0.5.0a2`` | diff --git a/bigchaindb_driver/__init__.py b/bigchaindb_driver/__init__.py index a1fc7dd..7cd7e4d 100644 --- a/bigchaindb_driver/__init__.py +++ b/bigchaindb_driver/__init__.py @@ -3,4 +3,4 @@ __author__ = 'BigchainDB' __email__ = 'dev@bigchaindb.com' -__version__ = '0.5.0a4' +__version__ = '0.5.0' diff --git a/setup.py b/setup.py index 231c4c4..d5d202c 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ setup( name='bigchaindb_driver', - version='0.5.0a4', + version='0.5.0', description="Python driver for BigchainDB", long_description=readme + '\n\n' + changelog, author="BigchainDB", @@ -62,7 +62,7 @@ zip_safe=False, keywords='bigchaindb_driver', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English',