Last PR before the release of v2.0.0b8 (#2596)

This commit is contained in:
Troy McConaghy 2018-11-03 18:37:27 +01:00 committed by GitHub
parent ff906b0abe
commit d85b9df615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 7 deletions

View File

@ -24,6 +24,21 @@ For reference, the possible headings are:
* **Known Issues** * **Known Issues**
* **Notes** * **Notes**
## [2.0 Beta 8] - 2018-11-03
### Changed
* Revised the [Simple Deployment Template](http://docs.bigchaindb.com/projects/server/en/latest/simple-deployment-template/index.html) in the docs. Added NGINX to the mix. Pull Requests [#2578](https://github.com/bigchaindb/bigchaindb/pull/2578) and [#2579](https://github.com/bigchaindb/bigchaindb/pull/2579)
* Revised `nginx/nginx.conf` to enable CORS. [Pull Request #2580](https://github.com/bigchaindb/bigchaindb/pull/2580)
### Fixed
* Fixed a typo in the Kubernetes ConfigMap template. [Pull Request #2583](https://github.com/bigchaindb/bigchaindb/pull/2583)
### External Contributors
[@gamjapark](https://github.com/gamjapark) translated the main `README.md` file into Korean. [Pull Request #2592](https://github.com/bigchaindb/bigchaindb/pull/2592)
## [2.0 Beta 7] - 2018-09-28 ## [2.0 Beta 7] - 2018-09-28
Tag name: v2.0.0b7 Tag name: v2.0.0b7

View File

@ -2,7 +2,8 @@
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0 # Code is Apache-2.0 and docs are CC-BY-4.0
__version__ = '2.0.0b7' __version__ = '2.0.0b8'
__short_version__ = '2.0b7' __short_version__ = '2.0b8'
# supported Tendermint version
# Supported Tendermint versions
__tm_supported_versions__ = ["0.22.8"] __tm_supported_versions__ = ["0.22.8"]

View File

@ -24,11 +24,11 @@ sudo apt install -y python3-pip libssl-dev
Now install the latest version of BigchainDB Server. Now install the latest version of BigchainDB Server.
You can find the latest version by going You can find the latest version by going
to the [BigchainDB project release history page on PyPI][bdb:pypi]. to the [BigchainDB project release history page on PyPI][bdb:pypi].
For example, to install version 2.0.0b7, you would do: For example, to install version 2.0.0b8, you would do:
``` ```
# Change 2.0.0b7 to the latest version as explained above: # Change 2.0.0b7 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0b7 sudo pip3 install bigchaindb==2.0.0b8
``` ```
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

@ -158,7 +158,7 @@ spec:
timeoutSeconds: 15 timeoutSeconds: 15
# BigchainDB container # BigchainDB container
- name: bigchaindb - name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta7 image: bigchaindb/bigchaindb:2.0.0-beta8
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- start - start

View File

@ -38,7 +38,7 @@ spec:
terminationGracePeriodSeconds: 10 terminationGracePeriodSeconds: 10
containers: containers:
- name: bigchaindb - name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-beta7 image: bigchaindb/bigchaindb:2.0.0-beta8
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- start - start