Skip to content

Commit 844532c

Browse files
mergify[bot]toteki
andauthored
chore: add 4.1.0-rc3 migration (backport #1846) (#1849)
* chore: add 4.1.0-rc3 migration (#1846) * chore: add 4.1.0-rc3 migration * lint++ --------- Co-authored-by: Adam Wozniak <29418299+adamewozniak@users.noreply.github.com> (cherry picked from commit 95924b6) # Conflicts: # app/upgrades.go * fix conflicts --------- Co-authored-by: Adam Moser <63419657+toteki@users.noreply.github.com>
1 parent f49bae9 commit 844532c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/upgrades.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ func (app UmeeApp) RegisterUpgradeHandlers(bool) {
3535
app.registerUpgrade3_3to4_0(upgradeInfo)
3636
app.registerUpgrade4_0_1(upgradeInfo)
3737
app.registerUpgrade4_1(upgradeInfo)
38+
app.registerUpgrade4_1_0rc3(upgradeInfo)
39+
}
40+
41+
// performs upgrade from v4.1.0-rc2 to v4.1.0-rc3
42+
func (app *UmeeApp) registerUpgrade4_1_0rc3(_ upgradetypes.Plan) {
43+
const planName = "v4.1.0-rc3"
44+
app.UpgradeKeeper.SetUpgradeHandler(planName, onlyModuleMigrations(app, planName))
3845
}
3946

4047
// performs upgrade from v4.0 to v4.1

0 commit comments

Comments
 (0)