From e815f983724d1a61ab41f405b5a085b605f04df3 Mon Sep 17 00:00:00 2001 From: Spoorthi <9302666+spoo-bar@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:13:10 +0100 Subject: [PATCH] ci: fix chain upgrade test (#574) --- CHANGELOG.md | 6 ++---- interchaintest/setup.go | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a7fe1e0..fdda02a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,15 +32,13 @@ Contains all the PRs that improved the code without changing the behaviors. ### Fixed -- [#571](https://github.com/archway-network/archway/pull/571) - Automatically -publish proto files to buf.build +- [#572](https://github.com/archway-network/archway/pull/572) - Using buf 1.31 to push files ## [v7.0.1](https://github.com/archway-network/archway/releases/tag/v7.0.1) ### Added -- [#571](https://github.com/archway-network/archway/pull/571) - Automatically -publish proto files to buf.build +- [#571](https://github.com/archway-network/archway/pull/571) - Automatically publish proto files to buf.build ### Fixed diff --git a/interchaintest/setup.go b/interchaintest/setup.go index 48228e2b..2c75567a 100644 --- a/interchaintest/setup.go +++ b/interchaintest/setup.go @@ -10,7 +10,7 @@ import ( ) const ( - initialVersion = "v7.0.0" // The last release of the chain. The one the mainnet is running on + initialVersion = "v7.0.1" // The last release of the chain. The one the mainnet is running on upgradeName = "latest" // The next upgrade name. Should match the upgrade handler. chainName = "archway" )