Skip to content

Commit

Permalink
Last PR before the release of BigchainDB 2.0 Beta 3 (bigchaindb#2391)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ttmc authored Jul 18, 2018
1 parent d521a00 commit abc6db7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions bigchaindb/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.0.0b2'
__short_version__ = '2.0b2'
__version__ = '2.0.0b3'
__short_version__ = '2.0b3'
5 changes: 3 additions & 2 deletions docs/server/source/simple-network-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion k8s/bigchaindb/bigchaindb-ss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/dev-setup/bigchaindb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abc6db7

Please sign in to comment.