Skip to content

Commit

Permalink
🏗️ Release migrations (#252)
Browse files Browse the repository at this point in the history
* chore: remove released migrations

* chore: set `DmpQueue` storage version
  • Loading branch information
lrazovic authored Apr 22, 2024
1 parent 07ac140 commit e4f7eaf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions runtimes/polimec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,12 @@ pub type Migrations = migrations::Unreleased;
/// The runtime migrations per release.
#[allow(missing_docs)]
pub mod migrations {
use crate::Runtime;
use crate::custom_migrations::init_pallet::InitializePallet;
use crate::DmpQueue;
/// Unreleased migrations. Add new ones here:
#[allow(unused_parens)]
pub type Unreleased = (
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
pallet_identity::migration::versioned::V0ToV1<Runtime, 1000>,
InitializePallet<DmpQueue>
);
}

Expand Down Expand Up @@ -194,7 +195,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("polimec-mainnet"),
impl_name: create_runtime_str!("polimec-mainnet"),
authoring_version: 1,
spec_version: 0_006_000,
spec_version: 0_006_001,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down

0 comments on commit e4f7eaf

Please sign in to comment.