Skip to content

Commit

Permalink
Tag prod version v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
parkkount committed Dec 5, 2022
1 parent add00e3 commit 606ba48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ else
endif

install: go.sum
go install -mod=readonly $(BUILD_FLAGS) ./cmd/knstld

ifeq ($(OS),Windows_NT)
exit 1
else
go build -mod=readonly $(BUILD_FLAGS) -o build/knstld ./cmd/knstld
########################################
### Tools & dependencies

Expand Down
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ func (app *App) RegisterTendermintService(clientCtx client.Context) {
}

func (app *App) registerUpgradeHandlers(cfg module.Configurator) {
app.UpgradeKeeper.SetUpgradeHandler("v0.45.1", func(ctx sdk.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
app.UpgradeKeeper.SetUpgradeHandler("v0.45.2", func(ctx sdk.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {

vm[icatypes.ModuleName] = app.mm.Modules[icatypes.ModuleName].ConsensusVersion()

Expand Down Expand Up @@ -818,7 +818,7 @@ func (app *App) registerUpgradeHandlers(cfg module.Configurator) {
panic(err)
}

if upgradeInfo.Name == "v0.45.1" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
if upgradeInfo.Name == "v0.45.2" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
storeUpgrades := storetypes.StoreUpgrades{
Added: []string{icacontrollertypes.StoreKey, icahosttypes.StoreKey},
}
Expand Down

0 comments on commit 606ba48

Please sign in to comment.