Last commit before v2.0.0b9 (#2608)

This commit is contained in:
Troy McConaghy 2018-11-27 19:50:05 +01:00 committed by GitHub
parent dcfe23f292
commit f8191b0d8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 7 deletions

View File

@ -24,6 +24,20 @@ For reference, the possible headings are:
* **Known Issues** * **Known Issues**
* **Notes** * **Notes**
## [2.0 Beta 9] - 2018-11-27
### Changed
Removed support for TLSv1 and TLSv1.1 in all NGINX config files. Kept support for TLSv1.2 and added support for TLSv1.3. [Pull Request #2601](https://github.com/bigchaindb/bigchaindb/pull/2601)
### Fixed
Fixed two issues with schema validation. Pull requests [#2606](https://github.com/bigchaindb/bigchaindb/pull/2606) & [#2607](https://github.com/bigchaindb/bigchaindb/pull/2607)
### External Contributors
[@gamjapark](https://github.com/gamjapark) and team translated all the [BigchainDB root docs](https://docs.bigchaindb.com/en/latest/korean/index.html) into Korean. [Pull Request #2603](https://github.com/bigchaindb/bigchaindb/pull/2603)
## [2.0 Beta 8] - 2018-11-03 ## [2.0 Beta 8] - 2018-11-03
### Changed ### Changed

View File

@ -2,8 +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.0b8' __version__ = '2.0.0b9'
__short_version__ = '2.0b8' __short_version__ = '2.0b9'
# Supported Tendermint versions # 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.0b8, you would do: For example, to install version 2.0.0b9, you would do:
``` ```
# Change 2.0.0b7 to the latest version as explained above: # Change 2.0.0b9 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0b8 sudo pip3 install bigchaindb==2.0.0b9
``` ```
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-beta8 image: bigchaindb/bigchaindb:2.0.0-beta9
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-beta8 image: bigchaindb/bigchaindb:2.0.0-beta9
imagePullPolicy: Always imagePullPolicy: Always
args: args:
- start - start