Skip to content

Commit

Permalink
Problem: Docs say install highest Tendermint version (#2524)
Browse files Browse the repository at this point in the history
Solution: Change the docs to recommend installing a specific Tendermint version.
Also update our release process so we change that version number before a release, if necessary.
  • Loading branch information
ttmc authored and muawiakh committed Sep 11, 2018
1 parent dd84d4e commit c79848d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE_PROCESS.md
Expand Up @@ -45,6 +45,7 @@ The following steps are what we do to release a new version of _BigchainDB Serve
- In `bigchaindb/version.py`:
- update `__version__` to e.g. `0.9.0` (with no `.dev` on the end)
- update `__short_version__` to e.g. `0.9` (with no `.dev` on the end)
- In the docs about installing BigchainDB (and Tendermint), and in the associated scripts, recommend/install a version of Tendermint that _actually works_ with the soon-to-be-released version of BigchainDB. You can find all such references by doing a search for the previously-recommended version number, such as `0.22.8`.
- In `setup.py`, _maybe_ update the development status item in the `classifiers` list. For example, one allowed value is `"Development Status :: 5 - Production/Stable"`. The [allowed values are listed at pypi.python.org](https://pypi.python.org/pypi?%3Aaction=list_classifiers).

1. **Wait for all the tests to pass!**
Expand Down
Expand Up @@ -25,7 +25,7 @@ After the installation of MongoDB is complete, run MongoDB using `sudo mongod`

### Installing a Tendermint Executable

Find [the version number of the latest Tendermint release](https://github.com/tendermint/tendermint/releases) and install it using the following, where 0.22.8 should be replaced by the latest released version number:
The version of BigchainDB Server described in these docs only works well with Tendermint 0.22.8 (not a higher version number). Install that:

```bash
$ sudo apt install -y unzip
Expand Down
Expand Up @@ -85,7 +85,7 @@ Note: The `mongodb` package is _not_ the official MongoDB package from MongoDB t

#### Install Tendermint

Install a [recent version of Tendermint][tendermint:releases]. BigchainDB Server requires version 0.22.8 or newer.
The version of BigchainDB Server described in these docs only works well with Tendermint 0.22.8 (not a higher version number). Install that:

```
sudo apt install -y unzip
Expand Down

0 comments on commit c79848d

Please sign in to comment.