Browse Source

version bump

pull/793/head
Ethan Buchman 7 years ago
parent
commit
a1501dcde8
2 changed files with 6 additions and 7 deletions
  1. +3
    -4
      CHANGELOG.md
  2. +3
    -3
      version/version.go

+ 3
- 4
CHANGELOG.md View File

@ -34,17 +34,16 @@ BREAKING CHANGES:
- rpc/client: ABCIQuery no longer takes `prove`
- state: remove GenesisDoc from state.
- consensus: new binary WAL format provides efficiency and uses checksums to detect corruption
- see scripts/wal2json to convert to json for debugging
- use scripts/wal2json to convert to json for debugging
FEATURES:
- new `certifiers` pkg contains the tendermint light-client library!
- new `certifiers` pkg contains the tendermint light-client library (name subject to change)!
- rpc: `/genesis` includes the `app_options` .
- rpc: `/abci_query` takes an additional `height` parameter to support historical queries.
- rpc/client: new ABCIQueryWithOptions supports options like `trusted` (set false to get a proof`) and `height` to query a historical height.
IMPROVEMENTS:
- genesis doc: added `app_options` field, which, along with the other fields,
will be returned upon `/genesis` rpc call.
- rpc: `/genesis` result includes `app_options`
- rpc/lib/client: add jitter to reconnects.
- rpc/lib/types: `RPCError` satisfies the `error` interface.


+ 3
- 3
version/version.go View File

@ -1,12 +1,12 @@
package version
const Maj = "0"
const Min = "11"
const Fix = "1"
const Min = "12"
const Fix = "0"
var (
// The full version string
Version = "0.11.1"
Version = "0.12.0"
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
GitCommit string


Loading…
Cancel
Save