Browse Source

update CHANGELOG

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

+ 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 {


Loading…
Cancel
Save