diff --git a/CHANGELOG.md b/CHANGELOG.md index f4989ef67..0522b37ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/version/version.go b/version/version.go index b874accc8..6995caa4c 100644 --- a/version/version.go +++ b/version/version.go @@ -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