From 6ed1bb96d789f922a9ef5cd021cf98638caf68c0 Mon Sep 17 00:00:00 2001 From: Sergio Mena Date: Fri, 2 Sep 2022 19:25:15 +0200 Subject: [PATCH] Update Tendermint version to v0.37.0 (#9354) * Update Tendermint version * Update version/version.go Co-authored-by: Thane Thomson Co-authored-by: Thane Thomson --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index d14f5cc31..9b5f8dea0 100644 --- a/version/version.go +++ b/version/version.go @@ -7,9 +7,9 @@ var ( 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" + TMVersionDefault = "0.37.0-alpha.1" + // ABCISemVer is the semantic version of the ABCI protocol + ABCISemVer = "1.0.0" ABCIVersion = ABCISemVer )