From ffe81a0206699c28a99abb2f423e2a36bf3a0c94 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 27 Apr 2018 12:35:21 -0400 Subject: [PATCH] changelog and version --- CHANGELOG.md | 13 ++++++++++++- version/version.go | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2701e57..0a5a70811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,23 +26,30 @@ BUG FIXES: ## 0.19.1 (April 27th, 2018) +Note this release includes some small breaking changes in the RPC and one in the +config that are really bug fixes. v0.19.1 will work with existing chains, and make Tendermint +easier to use and debug. With <3 + BREAKING (MINOR) - [config] Removed `wal_light` setting. If you really needed this, let us know FEATURES: +- [networks] moved in tooling from devops repo: terraform and ansible scripts for deploying testnets ! - [cmd] Added `gen_node_key` command BUG FIXES +Some of these are breaking in the RPC response, but they're really bugs! + +- [spec] Document address format and pubkey encoding pre and post Amino - [rpc] Lower case JSON field names - [rpc] Fix missing entries and lower case the fields in `/dump_consensus_state` - [rpc] Fix NodeInfo.Channels format to hex - [rpc] Add Validator address to `/status` - [rpc] Fix `prove` in ABCIQuery - [cmd] MarshalJSONIndent on init -- [spec] Document address format and pubkey encoding ## 0.19.0 (April 13th, 2018) @@ -59,6 +66,10 @@ See github.com/tendermint/go-amino for details on the new format. See `scripts/wire2amino.go` for a tool to upgrade genesis/priv_validator/node_key JSON files. +FEATURES + +- [test] docker-compose for local testnet setup (thanks Greg!) + ## 0.18.0 (April 6th, 2018) BREAKING: diff --git a/version/version.go b/version/version.go index f07690271..58e3f5e79 100644 --- a/version/version.go +++ b/version/version.go @@ -4,13 +4,13 @@ package version const ( Maj = "0" Min = "19" - Fix = "0" + Fix = "1" ) var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.19.0" + Version = "0.19.1" // GitCommit is the current HEAD set using ldflags. GitCommit string