mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-30 11:41:55 +00:00
Compare commits
8 Commits
1394-mempo
...
v0.22.1
Author | SHA1 | Date | |
---|---|---|---|
|
ce824d0b70 | ||
|
f93798f72d | ||
|
2fa9962835 | ||
|
64bae01d00 | ||
|
e282b3d761 | ||
|
fa05b03956 | ||
|
087d3e54d2 | ||
|
71da5e128a |
19
CHANGELOG.md
19
CHANGELOG.md
@@ -1,8 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
## 0.23.0
|
||||
## 0.22.1
|
||||
|
||||
*TBD*
|
||||
*July 5th, 2018*
|
||||
|
||||
IMPROVEMENTS
|
||||
|
||||
* Cleanup post repo-merge.
|
||||
* [docs] Various improvements.
|
||||
|
||||
BUG FIXES
|
||||
|
||||
* [state] Return error when EndBlock returns a 0-power validator that isn't
|
||||
already in the validator set.
|
||||
* [consensus] Shut down WAL properly.
|
||||
|
||||
## 0.22.0
|
||||
|
||||
@@ -20,7 +31,9 @@ BREAKING CHANGES:
|
||||
* `tmlibs/merkle` -> `crypto/merkle`. Uses SHA256 instead of RIPEMD160
|
||||
- [tmlibs] Update to v0.9.0 and merge into `libs`
|
||||
* remove `merkle` package (moved to `crypto/merkle`)
|
||||
- [rpc] `syncing` is now called `catching_up`.
|
||||
- [rpc]
|
||||
* All integers are encoded as strings (part of the update for Amino v0.10.1)
|
||||
* `syncing` is now called `catching_up`
|
||||
|
||||
FEATURES
|
||||
- [cmd] Added metrics (served under `/metrics` using a Prometheus client;
|
||||
|
@@ -8,7 +8,7 @@ Welcome to Tendermint!
|
||||
|
||||
This location for our documentation has been deprecated, please see:
|
||||
|
||||
- https://tendermint.com/docs
|
||||
- https://tendermint.com/docs/
|
||||
|
||||
The last version built by Read The Docs will still be available at:
|
||||
|
||||
|
@@ -3,14 +3,14 @@ package version
|
||||
// Version components
|
||||
const (
|
||||
Maj = "0"
|
||||
Min = "23"
|
||||
Fix = "0"
|
||||
Min = "22"
|
||||
Fix = "1"
|
||||
)
|
||||
|
||||
var (
|
||||
// Version is the current version of Tendermint
|
||||
// Must be a string because scripts like dist.sh read this file.
|
||||
Version = "0.23.0-dev"
|
||||
Version = "0.22.1"
|
||||
|
||||
// GitCommit is the current HEAD set using ldflags.
|
||||
GitCommit string
|
||||
|
Reference in New Issue
Block a user