From 126f8547a265cc05347541e89ef3d509c7abe1ba Mon Sep 17 00:00:00 2001 From: Silas Davis <silas@monax.io> Date: Tue, 24 Jul 2018 13:40:43 +0100 Subject: [PATCH] Fix duplicated docs Signed-off-by: Silas Davis <silas@monax.io> --- CHANGELOG.md | 4 +++- NOTES.md | 4 ++++ project/history.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b1250a..38c65b5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Hyperledger Burrow Changelog ## Version 0.20.0 -This is a major (pre-1.0.0) release that brings upgrades, and new grpc services. +This is a major (pre-1.0.0) release that introduces the ability to change the validator set through GovTx, transaction execution history, and fuller GRPC endpoint. #### Breaking changes - Address format has been changed (by Tendermint and we have followed suite) - conversion is possible but simpler to regenerated keys @@ -21,6 +21,8 @@ This is a major (pre-1.0.0) release that brings upgrades, and new grpc services. #### Bug fixes - Fixed panic on nil bounds for blocks service + + ## Version 0.19.0 This is a major (pre-1.0.0) release that brings upgrades, safety improvements, cloud configuration, and GRPC endpoints to Burrow. diff --git a/NOTES.md b/NOTES.md index ee42b8ae..926edb3f 100644 --- a/NOTES.md +++ b/NOTES.md @@ -1,3 +1,5 @@ +This is a major (pre-1.0.0) release that introduces the ability to change the validator set through GovTx, transaction execution history, and fuller GRPC endpoint. + #### Breaking changes - Address format has been changed (by Tendermint and we have followed suite) - conversion is possible but simpler to regenerated keys - JSON-RPC interface has been removed @@ -16,3 +18,5 @@ #### Bug fixes - Fixed panic on nil bounds for blocks service + + diff --git a/project/history.go b/project/history.go index d461c6ed..6be33f36 100644 --- a/project/history.go +++ b/project/history.go @@ -29,7 +29,7 @@ func FullVersion() string { // release tagging script: ./scripts/tag_release.sh var History relic.ImmutableHistory = relic.NewHistory("Hyperledger Burrow").MustDeclareReleases( "0.20.0", - `This is a major (pre-1.0.0) release that brings upgrades, safety improvements, cloud configuration, and GRPC endpoints to Burrow. + `This is a major (pre-1.0.0) release that introduces the ability to change the validator set through GovTx, transaction execution history, and fuller GRPC endpoint. #### Breaking changes - Address format has been changed (by Tendermint and we have followed suite) - conversion is possible but simpler to regenerated keys -- GitLab