Browse Source

Merge tag 'v0.7.1' into develop

Tagged 0.7.1 release
pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
bee7c5c7aa
No known key found for this signature in database GPG Key ID: 7B6881D965918214
2 changed files with 15 additions and 7 deletions
  1. +13
    -5
      CHANGELOG.md
  2. +2
    -2
      version/version.go

+ 13
- 5
CHANGELOG.md View File

@ -1,5 +1,13 @@
# Changelog
## 0.7.1 (November 14, 2017)
IMPROVEMENTS:
- [cli] added version command
BUG FIXES:
- [server] fix "Connection error module=abci-server error=EOF"
## 0.7.0 (October 27, 2017)
BREAKING CHANGES:
@ -43,7 +51,7 @@ IMPROVEMENTS:
- Update imports for new `tmlibs` repository
- Use the new logger
- [abci-cli] Add flags to the query command for `path`, `height`, and `prove`
- [types] use `data.Bytes` and `json` tags in the `Result` struct
- [types] use `data.Bytes` and `json` tags in the `Result` struct
BUG FIXES:
@ -55,9 +63,9 @@ IMPROVEMENTS:
## 0.4.0 (March 6, 2017)
BREAKING CHANGES:
BREAKING CHANGES:
- Query takes RequestQuery and returns ResponseQuery. The request is split into `data` and `path`,
- Query takes RequestQuery and returns ResponseQuery. The request is split into `data` and `path`,
can specify a height to query the state from, and whether or not the response should come with a proof.
The response returns the corresponding key-value pair, with proof if requested.
@ -66,7 +74,7 @@ message RequestQuery{
bytes data = 1;
string path = 2;
uint64 height = 3;
bool prove = 4;
bool prove = 4;
}
message ResponseQuery{
@ -142,7 +150,7 @@ message Header {
bytes last_commit_hash = 6;
bytes data_hash = 7;
bytes validators_hash = 8;
bytes app_hash = 9;
bytes app_hash = 9;
}
message BlockID {


+ 2
- 2
version/version.go View File

@ -4,6 +4,6 @@ package version
const Maj = "0"
const Min = "7"
const Fix = "0"
const Fix = "1"
const Version = "0.7.0"
const Version = "0.7.1"

Loading…
Cancel
Save