changelog and version

This commit is contained in:
Ethan Buchman 2017-10-27 12:12:07 -04:00
parent 66de53292e
commit d973cb5df9
2 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,17 @@
# Changelog
## 0.7.0 (October 27, 2017)
BREAKING CHANGES:
- [cli] consolidate example apps under a single `abci-cli` binary
IMPROVEMENTS:
- [cli] use spf13/cobra instead of urfave/cli
- [dummy] use iavl instead of merkleeyes, and add support for historical queries
BUG FIXES:
- [client] fix deadlock on StopForError
## 0.6.0 (September 22, 2017)
BREAKING CHANGES:

View File

@ -3,7 +3,7 @@ package version
// NOTE: we should probably be versioning the ABCI and the abci-cli separately
const Maj = "0"
const Min = "6"
const Min = "7"
const Fix = "0"
const Version = "0.6.0"
const Version = "0.7.0"