mirror of
https://github.com/tendermint/tendermint.git
synced 2026-08-21 06:36:19 +00:00
version bump
This commit is contained in:
+3
-4
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user