Skip to content

Commit

Permalink
chore: v7 release changes (#556)
Browse files Browse the repository at this point in the history
prepping for v7 release

Signed-off-by: Spoorthi <[email protected]>
  • Loading branch information
spoo-bar authored Apr 8, 2024
1 parent 1ef9299 commit 428853b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Contains bug fixes.
Contains all the PRs that improved the code without changing the behaviors.
-->

## [Unreleased]
## [v7.0.0](https://github.com/archway-network/archway/releases/tag/v7.0.0)

### Added

Expand All @@ -55,10 +55,6 @@ Contains all the PRs that improved the code without changing the behaviors.

- [#505](https://github.com/archway-network/archway/pull/505) - Update release process to account for release candidates on Titus

### Deprecated

### Removed

### Fixed
- [#537](https://github.com/archway-network/archway/pull/537) - Fix issue with callback failing when module param is changed
- [#538](https://github.com/archway-network/archway/pull/538) - Fixing the interchain test gh workflow failing cuz rc tags were not recognized
Expand Down
5 changes: 2 additions & 3 deletions app/app_upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
upgrade4_0_0 "github.com/archway-network/archway/app/upgrades/4_0_0"
upgrade4_0_2 "github.com/archway-network/archway/app/upgrades/4_0_2"
upgrade6_0_0 "github.com/archway-network/archway/app/upgrades/6_0_0"
upgradelatest "github.com/archway-network/archway/app/upgrades/latest"
upgrade7_0_0 "github.com/archway-network/archway/app/upgrades/7_0_0"
)

// UPGRADES
Expand All @@ -26,8 +26,7 @@ var Upgrades = []upgrades.Upgrade{
upgrade4_0_0.Upgrade, // v4.0.0
upgrade4_0_2.Upgrade, // v4.0.2
upgrade6_0_0.Upgrade, // v6.0.0

upgradelatest.Upgrade, // latest - This upgrade handler is used for all the current changes to the protocol
upgrade7_0_0.Upgrade, // v7.0.0
}

func (app *ArchwayApp) setupUpgrades() {
Expand Down
13 changes: 10 additions & 3 deletions app/upgrades/latest/upgrades.go → app/upgrades/7_0_0/upgrades.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package upgradelatest
package upgrade7_0_0

import (
storetypes "github.com/cosmos/cosmos-sdk/store/types"
Expand All @@ -18,8 +18,15 @@ import (

// This upgrade handler is used for all the current changes to the protocol

const Name = "latest"
const NameAsciiArt = ""
const Name = "v7.0.0"
const NameAsciiArt = `
### ### ###
# # # # # # #
# # # # # # #
# # # # # #
# # ### # ###
`

var Upgrade = upgrades.Upgrade{
UpgradeName: Name,
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
initialVersion = "v6.0.3" // The last release of the chain. The one the mainnet is running on
upgradeName = "latest" // The next upgrade name. Should match the upgrade handler.
upgradeName = "v7.0.0" // The next upgrade name. Should match the upgrade handler.
chainName = "archway"
)

Expand Down

0 comments on commit 428853b

Please sign in to comment.