From 60ce9a128dbbf46258fe9255177b767901113dff Mon Sep 17 00:00:00 2001 From: tokikuch Date: Wed, 2 Oct 2024 12:47:14 -0700 Subject: [PATCH] Version bump to RC-0.12.0 (#1615) Due to a consensus breaking change to fix a regression in RC-0.11.1 (#1614), this patch is upgrading the protocol version to RC-0.12.0. That regression caused the chainhalt in the testnet at height block. We're rolling back the testnet to recover it. This version bump helps to make sure all validators are runing the latest version. reviewpad:summary --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 4bf403628..01e523cf5 100644 --- a/app/app.go +++ b/app/app.go @@ -27,7 +27,7 @@ import ( ) const ( - AppVersion = "RC-0.11.1" + AppVersion = "RC-0.12.0" ) // NewPocketCoreApp is a constructor function for PocketCoreApp