Skip to content

Commit 6f47357

Browse files
codegeschreiTroy McConaghy
authored andcommitted
prepare release (#443)
* prepare release * Problem: the development status is still beta Solution: set the development status to stable
1 parent 3dc5a50 commit 6f47357

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changelog
22
=========
33

4+
0.5.0 (2018-06-14)
5+
---------------------
6+
Added
7+
^^^^^
8+
* Added three new methods to send/post a transaction as discussed `here <https://github.com/bigchaindb/bigchaindb/issues/2307>`_:
9+
10+
* ``send_commit``
11+
* ``send_async``
12+
* ``send_sync``
13+
14+
Deprecated
15+
^^^^^^^^^^
16+
* ``send()`` under ``TransactionEndpoint``, and available
17+
via ``BigchainDB.transactions``. Replaced by the above three methods:
18+
``send_commit()``, ``send_async()``, and ``send_sync()``.
19+
20+
421
0.5.0a4 (2018-05-07)
522
---------------------
623
* `Removed dependencies from BigchainDB Server package <https://github.com/bigchaindb/bigchaindb-driver/pull/411>`_.

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ Compatibility Matrix
131131
+-----------------------+---------------------------+
132132
| **BigchainDB Server** | **BigchainDB Driver** |
133133
+=======================+===========================+
134+
| ``>= 2.0.0b1`` | ``0.5.0`` |
135+
+-----------------------+---------------------------+
134136
| ``>= 2.0.0a3`` | ``0.5.0a4`` |
135137
+-----------------------+---------------------------+
136138
| ``>= 2.0.0a2`` | ``0.5.0a2`` |

bigchaindb_driver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = 'BigchainDB'
55
__email__ = '[email protected]'
6-
__version__ = '0.5.0a4'
6+
__version__ = '0.5.0'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
setup(
4848
name='bigchaindb_driver',
49-
version='0.5.0a4',
49+
version='0.5.0',
5050
description="Python driver for BigchainDB",
5151
long_description=readme + '\n\n' + changelog,
5252
author="BigchainDB",
@@ -62,7 +62,7 @@
6262
zip_safe=False,
6363
keywords='bigchaindb_driver',
6464
classifiers=[
65-
'Development Status :: 4 - Beta',
65+
'Development Status :: 5 - Production/Stable',
6666
'Intended Audience :: Developers',
6767
'License :: OSI Approved :: Apache Software License',
6868
'Natural Language :: English',

0 commit comments

Comments
 (0)