mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
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:
parent
d521a00925
commit
abc6db7999
@ -18,6 +18,14 @@ For reference, the possible headings are:
|
||||
* **Known Issues**
|
||||
* **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
|
||||
|
||||
Tag name: v2.0.0b2
|
||||
|
@ -1,2 +1,2 @@
|
||||
__version__ = '2.0.0b2'
|
||||
__short_version__ = '2.0b2'
|
||||
__version__ = '2.0.0b3'
|
||||
__short_version__ = '2.0b3'
|
||||
|
@ -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
|
||||
```
|
||||
|
||||
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`.
|
||||
|
@ -154,7 +154,7 @@ spec:
|
||||
timeoutSeconds: 15
|
||||
# BigchainDB container
|
||||
- name: bigchaindb
|
||||
image: bigchaindb/bigchaindb:2.0.0-beta2
|
||||
image: bigchaindb/bigchaindb:2.0.0-beta3
|
||||
imagePullPolicy: Always
|
||||
args:
|
||||
- start
|
||||
|
@ -34,7 +34,7 @@ spec:
|
||||
terminationGracePeriodSeconds: 10
|
||||
containers:
|
||||
- name: bigchaindb
|
||||
image: bigchaindb/bigchaindb:2.0.0-beta2
|
||||
image: bigchaindb/bigchaindb:2.0.0-beta3
|
||||
imagePullPolicy: Always
|
||||
args:
|
||||
- start
|
||||
|
Loading…
x
Reference in New Issue
Block a user