Last PR before the release of BigchainDB 2.0 Beta 3 (#2391)

* Update CHANGELOG.md for 2.0 Beta 3 release

* Update docs re/ installation for 2.0.0b3

* Update version.py and k8s files for 2.0.0b3
This commit is contained in:
Troy McConaghy 2018-07-18 15:20:13 +02:00 committed by GitHub
parent d521a00925
commit abc6db7999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 6 deletions

View File

@ -18,6 +18,14 @@ For reference, the possible headings are:
* **Known Issues** * **Known Issues**
* **Notes** * **Notes**
## [2.0 Beta 3] - 2018-07-18
Tag name: v2.0.0b3
### Fixed
Fixed a bug in transaction validation. For some more-complex situations, it would say that a valid transaction was invalid. This bug was actually fixed before; it was [issue #1271](https://github.com/bigchaindb/bigchaindb/issues/1271). The unit test for it was turned off while we integrated Tendermint. Then the query implementation code got changed, reintroducing the bug, but the unit test was off so the bug wasn't caught. When we turned the test back on, shortly after releasing Beta 2, it failed, unveiling the bug. [Pull request #2389](https://github.com/bigchaindb/bigchaindb/pull/2389)
## [2.0 Beta 2] - 2018-07-16 ## [2.0 Beta 2] - 2018-07-16
Tag name: v2.0.0b2 Tag name: v2.0.0b2

View File

@ -1,2 +1,2 @@
__version__ = '2.0.0b2' __version__ = '2.0.0b3'
__short_version__ = '2.0b2' __short_version__ = '2.0b3'

View File

@ -52,10 +52,11 @@ BigchainDB Server requires **Python 3.6+**, so make sure your system has it. Ins
sudo apt install -y python3-pip libssl-dev sudo apt install -y python3-pip libssl-dev
``` ```
Now install the latest version of BigchainDB. Check the [project page on PyPI][bdb:pypi] for the last version (which was `2.0.0a6` at the time of writing) and install it: Now install the latest version of BigchainDB. You can find the latest version by going to the [BigchainDB project release history page on PyPI][bdb:pypi]. For example, to install version 2.0.0b3, you would do:
``` ```
sudo pip3 install bigchaindb==2.0.0a6 # Change 2.0.0b3 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0b3
``` ```
Check that you installed the correct version of BigchainDB Server using `bigchaindb --version`. Check that you installed the correct version of BigchainDB Server using `bigchaindb --version`.

View File

@ -154,7 +154,7 @@ spec:
timeoutSeconds: 15 timeoutSeconds: 15
# BigchainDB container # BigchainDB container
- name: bigchaindb - name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta2 image: bigchaindb/bigchaindb:2.0.0-beta3
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- start - start

View File

@ -34,7 +34,7 @@ spec:
terminationGracePeriodSeconds: 10 terminationGracePeriodSeconds: 10
containers: containers:
- name: bigchaindb - name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta2 image: bigchaindb/bigchaindb:2.0.0-beta3
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- start - start