Skip to content

Commit 369d967

Browse files
vrdecodegeschrei
authored andcommitted
Release for 0.5 Alpha (#383)
________________________ < here comes the release > ------------------------ \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || ||
1 parent 9304715 commit 369d967

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

CHANGELOG.rst

100755100644
Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
0.5.0a1 (2018-04-03)
5+
--------------------
6+
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:
7+
8+
* [Some HTTP API Changes in the Next Release](https://blog.bigchaindb.com/some-http-api-changes-in-the-next-release-49612a537b0c)
9+
* [Three Transaction Model Changes in the Next Release](https://blog.bigchaindb.com/three-transaction-model-changes-in-the-next-release-dadbac50094a)
10+
11+
412
0.4.1 (2017-08-02)
513
------------------
614
Fixed
@@ -34,8 +42,8 @@ Added
3442
Changed
3543
^^^^^^^
3644
* Node URLs, passed to ``BigchainDB()`` MUST not include the api prefix
37-
``'/api/v1'``, e.g.:
38-
45+
``'/api/v1'``, e.g.:
46+
3947
* BEFORE: ``http://localhost:9984/api/v1``
4048
* NOW: ``http://localhost:9984``
4149

@@ -59,7 +67,7 @@ Removed
5967
Added
6068
^^^^^
6169
* Support for "canonical" transaction operations:
62-
70+
6371
* ``prepare``
6472
* ``fulfill``
6573
* ``send``

LICENSES.md

100755100644
File mode changed.

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,15 @@ Compatibility Matrix
4747
+-----------------------+---------------------------+
4848
| **BigchainDB Server** | **BigchainDB Driver** |
4949
+=======================+===========================+
50-
| ``>= 0.8.2`` | ``>= 0.1.3`` |
50+
| ``>= 2.0.0`` | ``0.5.x`` |
5151
+-----------------------+---------------------------+
52-
| ``>= 0.9.1`` | ``0.2.x`` |
52+
| ``>= 1.0.0`` | ``0.4.x`` |
5353
+-----------------------+---------------------------+
5454
| ``== 1.0.0rc1`` | ``0.3.x`` |
5555
+-----------------------+---------------------------+
56-
| ``>= 1.0.0`` | ``0.4.x`` |
56+
| ``>= 0.9.1`` | ``0.2.x`` |
57+
+-----------------------+---------------------------+
58+
| ``>= 0.8.2`` | ``>= 0.1.3`` |
5759
+-----------------------+---------------------------+
5860

5961
`Although we do our best to keep the master branches in sync, there may be

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.4.0'
6+
__version__ = '0.5.0a1'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
install_requires = [
1313
'requests>=2.11.0',
14-
'bigchaindb==2.0.0.dev',
14+
'bigchaindb~=2.0.0a1',
1515
]
1616

1717
tests_require = [
@@ -43,7 +43,7 @@
4343

4444
setup(
4545
name='bigchaindb_driver',
46-
version='0.4.0',
46+
version='0.5.0a1',
4747
description="Python driver for BigchainDB",
4848
long_description=readme + '\n\n' + changelog,
4949
author="BigchainDB",
@@ -75,6 +75,6 @@
7575
'docs': docs_require,
7676
},
7777
dependency_links=[
78-
'git+https://github.com/bigchaindb/bigchaindb.git@master#egg=bigchaindb-2.0.0.dev',
78+
'git+https://github.com/bigchaindb/bigchaindb.git@master#egg=bigchaindb-2.0.0a1',
7979
],
8080
)

0 commit comments

Comments
 (0)