Version bump

Signed-off-by: David Dashyan <mail@davie.li>
This commit is contained in:
David Dashyan 2020-08-11 18:16:45 +03:00
parent 922458b35b
commit ac629f9cdd
No known key found for this signature in database
GPG Key ID: 5D619778FD611992
6 changed files with 15 additions and 11 deletions

View File

@ -25,6 +25,12 @@ For reference, the possible headings are:
* **Known Issues** * **Known Issues**
* **Notes** * **Notes**
## [2.2.2] - 2020-08-12
### Security
Several dependencies updated including Flask that had vulnerability.
## [2.2.1] - 2020-04-14 ## [2.2.1] - 2020-04-14
### Fixed ### Fixed

View File

@ -22,10 +22,8 @@ logger = logging.getLogger(__name__)
BANNER = """ BANNER = """
**************************************************************************** ****************************************************************************
* * * *
* * * BigchainDB 2.2.2 *
* * * codename "jumping sloth" *
* *
* codename "fluffy cat" *
* Initialization complete. BigchainDB Server is ready and waiting. * * Initialization complete. BigchainDB Server is ready and waiting. *
* * * *
* You can send HTTP requests via the HTTP API documented in the * * You can send HTTP requests via the HTTP API documented in the *

View File

@ -3,7 +3,7 @@
# 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.2.1' __version__ = '2.2.2'
__short_version__ = '2.2' __short_version__ = '2.2'
# Supported Tendermint versions # Supported Tendermint versions

View File

@ -4,7 +4,7 @@ Content-Type: application/json
{ {
"assets": "/assets/", "assets": "/assets/",
"blocks": "/blocks/", "blocks": "/blocks/",
"docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.1/http-client-server-api.html", "docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.2/http-client-server-api.html",
"metadata": "/metadata/", "metadata": "/metadata/",
"outputs": "/outputs/", "outputs": "/outputs/",
"streams": "ws://localhost:9985/api/v1/streams/valid_transactions", "streams": "ws://localhost:9985/api/v1/streams/valid_transactions",

View File

@ -6,7 +6,7 @@ Content-Type: application/json
"v1": { "v1": {
"assets": "/api/v1/assets/", "assets": "/api/v1/assets/",
"blocks": "/api/v1/blocks/", "blocks": "/api/v1/blocks/",
"docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.1/http-client-server-api.html", "docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.2/http-client-server-api.html",
"metadata": "/api/v1/metadata/", "metadata": "/api/v1/metadata/",
"outputs": "/api/v1/outputs/", "outputs": "/api/v1/outputs/",
"streams": "ws://localhost:9985/api/v1/streams/valid_transactions", "streams": "ws://localhost:9985/api/v1/streams/valid_transactions",
@ -14,7 +14,7 @@ Content-Type: application/json
"validators": "/api/v1/validators" "validators": "/api/v1/validators"
} }
}, },
"docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.1/", "docs": "https://docs.bigchaindb.com/projects/server/en/v2.2.2/",
"software": "BigchainDB", "software": "BigchainDB",
"version": "2.2.1" "version": "2.2.2"
} }

View File

@ -32,11 +32,11 @@ sudo pip3 install -U pip
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](https://pypi.org/project/BigchainDB/#history). to the [BigchainDB project release history page on PyPI](https://pypi.org/project/BigchainDB/#history).
For example, to install version 2.0.0, you would do: For example, to install version 2.2.2, you would do:
``` ```
# Change 2.0.0 to the latest version as explained above: # Change 2.0.0 to the latest version as explained above:
sudo pip3 install bigchaindb==2.0.0 sudo pip3 install bigchaindb==2.2.2
``` ```
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`.