From 4aa2bf811bb1bc5a6468959f0f7bcf1b013c62a0 Mon Sep 17 00:00:00 2001 From: Dino Pacandi Date: Tue, 5 Nov 2024 14:14:44 +0100 Subject: [PATCH] v5.45.0 release prep --- Cargo.lock | 2 +- bin/collator/Cargo.toml | 2 +- runtime/shibuya/src/lib.rs | 10 ++-------- runtime/shiden/src/lib.rs | 14 ++------------ 4 files changed, 6 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3447a6b37..29876dad7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -459,7 +459,7 @@ dependencies = [ [[package]] name = "astar-collator" -version = "5.44.0" +version = "5.45.0" dependencies = [ "astar-primitives", "astar-runtime", diff --git a/bin/collator/Cargo.toml b/bin/collator/Cargo.toml index bfe5634ce..ec0c3f258 100644 --- a/bin/collator/Cargo.toml +++ b/bin/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "astar-collator" -version = "5.44.0" +version = "5.45.0" description = "Astar collator implementation in Rust." build = "build.rs" default-run = "astar-collator" diff --git a/runtime/shibuya/src/lib.rs b/runtime/shibuya/src/lib.rs index ba30d0dca..ada15891d 100644 --- a/runtime/shibuya/src/lib.rs +++ b/runtime/shibuya/src/lib.rs @@ -1522,13 +1522,7 @@ parameter_types! { impl pallet_migrations::Config for Runtime { type RuntimeEvent = RuntimeEvent; #[cfg(not(feature = "runtime-benchmarks"))] - type Migrations = ( - pallet_dapp_staking::migration::LazyMigration< - Runtime, - pallet_dapp_staking::weights::SubstrateWeight, - >, - vesting_mbm::LazyMigration>, - ); + type Migrations = (); // Benchmarks need mocked migrations to guarantee that they succeed. #[cfg(feature = "runtime-benchmarks")] type Migrations = pallet_migrations::mock_helpers::MockedMigrations; @@ -1661,7 +1655,7 @@ pub type Executive = frame_executive::Executive< pub type Migrations = (Unreleased, Permanent); /// Unreleased migrations. Add new ones here: -pub type Unreleased = (cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5,); +pub type Unreleased = (); /// Migrations/checks that do not need to be versioned and can run on every upgrade. pub type Permanent = (pallet_xcm::migration::MigrateToLatestXcmVersion,); diff --git a/runtime/shiden/src/lib.rs b/runtime/shiden/src/lib.rs index 12d5d9305..754e752a8 100644 --- a/runtime/shiden/src/lib.rs +++ b/runtime/shiden/src/lib.rs @@ -1194,13 +1194,7 @@ parameter_types! { impl pallet_migrations::Config for Runtime { type RuntimeEvent = RuntimeEvent; #[cfg(not(feature = "runtime-benchmarks"))] - type Migrations = ( - pallet_dapp_staking::migration::LazyMigration< - Runtime, - pallet_dapp_staking::weights::SubstrateWeight, - >, - vesting_mbm::LazyMigration>, - ); + type Migrations = (); // Benchmarks need mocked migrations to guarantee that they succeed. #[cfg(feature = "runtime-benchmarks")] type Migrations = pallet_migrations::mock_helpers::MockedMigrations; @@ -1339,11 +1333,7 @@ parameter_types! { pub type Migrations = (Unreleased, Permanent); /// Unreleased migrations. Add new ones here: -pub type Unreleased = ( - cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5, - pallet_dapp_staking::migration::AdjustEraMigration, - pallet_inflation::migration::AdjustBlockRewardMigration, -); +pub type Unreleased = (); /// Migrations/checks that do not need to be versioned and can run on every upgrade. pub type Permanent = (pallet_xcm::migration::MigrateToLatestXcmVersion,);