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 40a92756f9
commit 8895d50f5b
6 changed files with 15 additions and 11 deletions

View File

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

View File

@ -22,10 +22,8 @@ logger = logging.getLogger(__name__)
BANNER = """
****************************************************************************
* *
* *
* *
* *
* codename "fluffy cat" *
* BigchainDB 2.2.2 *
* codename "jumping sloth" *
* Initialization complete. BigchainDB Server is ready and waiting. *
* *
* 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)
# Code is Apache-2.0 and docs are CC-BY-4.0
__version__ = '2.2.1'
__version__ = '2.2.2'
__short_version__ = '2.2'
# Supported Tendermint versions

View File

@ -4,7 +4,7 @@ Content-Type: application/json
{
"assets": "/assets/",
"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/",
"outputs": "/outputs/",
"streams": "ws://localhost:9985/api/v1/streams/valid_transactions",

View File

@ -6,7 +6,7 @@ Content-Type: application/json
"v1": {
"assets": "/api/v1/assets/",
"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/",
"outputs": "/api/v1/outputs/",
"streams": "ws://localhost:9985/api/v1/streams/valid_transactions",
@ -14,7 +14,7 @@ Content-Type: application/json
"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",
"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.
You can find the latest version by going
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:
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`.