Skip to content

Commit

Permalink
Release for 0.5 Alpha 2 (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
codegeschrei authored and vrde committed Apr 18, 2018
1 parent e17d8f1 commit c3719b6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

0.5.0a2 (2018-04-18)
---------------------
* `The default mode for sending a transaction is now commit <https://github.com/bigchaindb/bigchaindb-driver/issues/386>`_.
* `The metadata endpoint was added <https://github.com/bigchaindb/bigchaindb-driver/issues/347>`_.
* 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:
Expand Down
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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`` |
+-----------------------+---------------------------+
Expand Down
2 changes: 1 addition & 1 deletion bigchaindb_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = 'BigchainDB'
__email__ = '[email protected]'
__version__ = '0.5.0a1'
__version__ = '0.5.0a2'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

install_requires = [
'requests>=2.11.0',
'bigchaindb~=2.0.0a1',
'bigchaindb~=2.0.0a2',
]

tests_require = [
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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',
],
)

0 comments on commit c3719b6

Please sign in to comment.