From b055535397290e372b2d2f21a9062595ae0053e5 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Thu, 1 Sep 2022 21:44:45 -0400 Subject: [PATCH] abci: Set version to 1.0.0 (#9341) Signed-off-by: Thane Thomson Signed-off-by: Thane Thomson --- UPGRADING.md | 2 +- version/version.go | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/UPGRADING.md b/UPGRADING.md index 55a859969..45b948330 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -7,7 +7,7 @@ Tendermint Core. ### ABCI Changes -* The `ABCIVersion` is now `0.18.0`. +* The `ABCIVersion` is now `1.0.0`. * Added new ABCI methods `PrepareProposal` and `ProcessProposal`. For details, please see the [spec](spec/abci/README.md). Applications upgrading to diff --git a/version/version.go b/version/version.go index d14f5cc31..62244e2ec 100644 --- a/version/version.go +++ b/version/version.go @@ -1,15 +1,13 @@ package version -var ( - TMCoreSemVer = TMVersionDefault -) +var TMCoreSemVer = TMVersionDefault const ( // TMVersionDefault is the used as the fallback version of Tendermint Core // when not using git describe. It is formatted with semantic versioning. TMVersionDefault = "0.34.20" - // ABCISemVer is the semantic version of the ABCI library - ABCISemVer = "0.18.0" + // ABCISemVer is the semantic version of the ABCI protocol + ABCISemVer = "1.0.0" ABCIVersion = ABCISemVer )