File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
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+
4210.5.0a4 (2018-05-07)
522---------------------
623* `Removed dependencies from BigchainDB Server package <https://github.com/bigchaindb/bigchaindb-driver/pull/411 >`_.
Original file line number Diff line number Diff 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 `` |
Original file line number Diff line number Diff line change 33
44__author__ = 'BigchainDB'
556- __version__ = '0.5.0a4 '
6+ __version__ = '0.5.0 '
Original file line number Diff line number Diff line change 4646
4747setup (
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" ,
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' ,
You can’t perform that action at this time.
0 commit comments