diff --git a/app/upgrades.go b/app/upgrades.go index ff49aa5d69..2211ea414c 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -14,7 +14,7 @@ import ( ) func (app *App) RegisterUpgradeHandlers(cdc codec.BinaryCodec, clientKeeper clientkeeper.Keeper) { - planName := "v1.2" + planName := "v1.3" app.UpgradeKeeper.SetUpgradeHandler(planName, func(ctx sdk.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { m, err := app.mm.RunMigrations(ctx, app.configurator, fromVM) if err != nil { diff --git a/default.nix b/default.nix index 4516138d6a..4501d75db8 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ , nativeByteOrder ? true # nativeByteOrder mode will panic on big endian machines }: let - version = "v1.2.1"; + version = "v1.3.0"; pname = "cronosd"; tags = [ "ledger" "netgo" network "rocksdb" "grocksdb_no_link" ] ++ lib.optionals nativeByteOrder [ "nativebyteorder" ]; ldflags = lib.concatStringsSep "\n" ([ diff --git a/integration_tests/configs/upgrade-test-package.nix b/integration_tests/configs/upgrade-test-package.nix index 2d06b77080..ea00a05708 100644 --- a/integration_tests/configs/upgrade-test-package.nix +++ b/integration_tests/configs/upgrade-test-package.nix @@ -23,5 +23,5 @@ in pkgs.linkFarm "upgrade-test-package" [ { name = "genesis"; path = released0; } { name = "v1.1.0"; path = released; } - { name = "v1.2"; path = current; } + { name = "v1.3"; path = current; } ] diff --git a/integration_tests/test_upgrade.py b/integration_tests/test_upgrade.py index cc8a8dded6..d07787d678 100644 --- a/integration_tests/test_upgrade.py +++ b/integration_tests/test_upgrade.py @@ -194,7 +194,7 @@ def do_upgrade(plan_name, target, mode=None): ) print("old values", old_height, old_balance, old_base_fee) - do_upgrade("v1.2", target_height1) + do_upgrade("v1.3", target_height1) cli = c.cosmos_cli() # check basic tx works