Skip to content

Commit

Permalink
Last PR before releasing 2.0.0b7 (#2576)
Browse files Browse the repository at this point in the history
* Updated changelog for 2.0.0b7

* Change 2.0.0b3 to b7 in network-setup.md

* Updated k8s yamls for 2.0.0b7 release

* Updated version.py for 2.0.0b7 release
  • Loading branch information
ttmc committed Sep 28, 2018
1 parent 0c4d6ec commit 3da13ed
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,31 @@ For reference, the possible headings are:
* **Known Issues**
* **Notes**

## [2.0 Beta 7] - 2018-09-28

Tag name: v2.0.0b7

### Added

Completed the implementation of chain-migration elections (BEP-42). Pull requests [#2553](https://github.com/bigchaindb/bigchaindb/pull/2553), [#2556](https://github.com/bigchaindb/bigchaindb/pull/2556), [#2558](https://github.com/bigchaindb/bigchaindb/pull/2558), [#2563](https://github.com/bigchaindb/bigchaindb/pull/2563) and [#2566](https://github.com/bigchaindb/bigchaindb/pull/2566)

### Changed

* Code that used the Python driver's (deprecated) transactions.send() method now uses its transactions.send_commit() method instead. [Pull request #2547](https://github.com/bigchaindb/bigchaindb/pull/2547)
* Code that implied pluggable "consensus" now implies pluggable transaction "validation" (a more accurate word). [Pull request #2561](https://github.com/bigchaindb/bigchaindb/pull/2561)

### Removed

Benchmark logs. [Pull request #2565](https://github.com/bigchaindb/bigchaindb/pull/2565)

### Fixed

A bug caused by an incorrect MongoDB query. [Pull request #2567](https://github.com/bigchaindb/bigchaindb/pull/2567)

### Notes

There's now better documentation about logs, log rotation, and the `server.bind` config setting. Pull requests [#2546](https://github.com/bigchaindb/bigchaindb/pull/2546) and [#2575](https://github.com/bigchaindb/bigchaindb/pull/2575)

## [2.0 Beta 6] - 2018-09-17

Tag name: v2.0.0b6
Expand Down
4 changes: 2 additions & 2 deletions bigchaindb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0

__version__ = '2.0.0b6'
__short_version__ = '2.0b6'
__version__ = '2.0.0b7'
__short_version__ = '2.0b7'
# supported Tendermint version
__tm_supported_versions__ = ["0.22.8"]
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ sudo apt install -y python3-pip libssl-dev
# Ubuntu 16.04, and other Linux distros, may require other packages or more packages
```

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:
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.0b7, you would do:

```
# Change 2.0.0b3 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0b3
# Change 2.0.0b7 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0b7
```

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 @@ -158,7 +158,7 @@ spec:
timeoutSeconds: 15
# BigchainDB container
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta6
image: bigchaindb/bigchaindb:2.0.0-beta7
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 @@ -38,7 +38,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta6
image: bigchaindb/bigchaindb:2.0.0-beta7
imagePullPolicy: Always
args:
- start
Expand Down

0 comments on commit 3da13ed

Please sign in to comment.