diff --git a/Cargo.lock b/Cargo.lock index 75109c58..d154cbe1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "pop-runtime-testnet" -version = "0.2.0" +version = "0.3.0" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", diff --git a/runtime/testnet/Cargo.toml b/runtime/testnet/Cargo.toml index 3c584b37..70b155e5 100644 --- a/runtime/testnet/Cargo.toml +++ b/runtime/testnet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pop-runtime-testnet" -version = "0.2.0" +version = "0.3.0" authors.workspace = true description.workspace = true license = "Unlicense" diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index 52104c43..f0e8b3a3 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -107,9 +107,6 @@ pub type SignedExtra = ( pub type UncheckedExtrinsic = generic::UncheckedExtrinsic; -/// Migrations to apply on runtime upgrade. -pub type Migrations = (pallet_collator_selection::migration::v2::MigrationToV2,); - /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, @@ -117,7 +114,6 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - Migrations, >; /// Handles converting a weight scalar to a fee value, based on the scale and granularity of the @@ -181,7 +177,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("pop"), authoring_version: 1, #[allow(clippy::zero_prefixed_literal)] - spec_version: 00_02_00, + spec_version: 00_03_00, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1,