From c3719b6be592e6782c0d61e78d2555e06e19f05b Mon Sep 17 00:00:00 2001 From: codegeschrei Date: Wed, 18 Apr 2018 17:56:12 +0200 Subject: [PATCH] Release for 0.5 Alpha 2 (#402) --- CHANGELOG.rst | 7 +++++++ README.rst | 6 ++++-- bigchaindb_driver/__init__.py | 2 +- setup.py | 6 +++--- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 621e7b7..5f5aa4a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +0.5.0a2 (2018-04-18) +--------------------- +* `The default mode for sending a transaction is now commit `_. +* `The metadata endpoint was added `_. +* Support for BigchainDB server v2.0.0a2. + + 0.5.0a1 (2018-04-03) -------------------- There were **many** changes between BigchainDB 1.3 and BigchainDB 2.0 Alpha, too many to list here. We wrote a series of blog posts to summarize most changes, especially those that affect end users and application developers: diff --git a/README.rst b/README.rst index c882510..15804fa 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ We recommend you use a virtual environment for running `bigchaindb-driver`, to i .. code-block:: text pip install -U bigchaindb-driver - + If this fails, ensure you have python 3 installed, if you have both versions of python installed, to install and update using `pip`: .. code-block:: text @@ -52,7 +52,9 @@ Compatibility Matrix +-----------------------+---------------------------+ | **BigchainDB Server** | **BigchainDB Driver** | +=======================+===========================+ -| ``>= 2.0.0`` | ``0.5.x`` | +| ``>= 2.0.0a2`` | ``0.5.0a2`` | ++-----------------------+---------------------------+ +| ``>= 2.0.0a1`` | ``0.5.0a1`` | +-----------------------+---------------------------+ | ``>= 1.0.0`` | ``0.4.x`` | +-----------------------+---------------------------+ diff --git a/bigchaindb_driver/__init__.py b/bigchaindb_driver/__init__.py index fe7f4e1..0ac6316 100644 --- a/bigchaindb_driver/__init__.py +++ b/bigchaindb_driver/__init__.py @@ -3,4 +3,4 @@ __author__ = 'BigchainDB' __email__ = 'dev@bigchaindb.com' -__version__ = '0.5.0a1' +__version__ = '0.5.0a2' diff --git a/setup.py b/setup.py index 31b83c6..1c0fee5 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ install_requires = [ 'requests>=2.11.0', - 'bigchaindb~=2.0.0a1', + 'bigchaindb~=2.0.0a2', ] tests_require = [ @@ -43,7 +43,7 @@ setup( name='bigchaindb_driver', - version='0.5.0a1', + version='0.5.0a2', description="Python driver for BigchainDB", long_description=readme + '\n\n' + changelog, author="BigchainDB", @@ -75,6 +75,6 @@ 'docs': docs_require, }, dependency_links=[ - 'git+https://github.com/bigchaindb/bigchaindb.git@master#egg=bigchaindb-2.0.0a1', + 'git+https://github.com/bigchaindb/bigchaindb.git@master#egg=bigchaindb-2.0.0a2', ], )