From b5fb59071935d3673a6e6cf743a8a8231eaeb60e Mon Sep 17 00:00:00 2001 From: SunTiebing <1045060705@qq.com> Date: Fri, 9 Aug 2024 12:06:23 +0800 Subject: [PATCH] Bifrost v0.13.0 --- Cargo.lock | 2 +- node/cli/Cargo.toml | 2 +- runtime/bifrost-kusama/src/lib.rs | 15 +-------------- runtime/bifrost-polkadot/src/lib.rs | 16 +--------------- 4 files changed, 4 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d48d5fcb4..cd2bbe0b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -968,7 +968,7 @@ dependencies = [ [[package]] name = "bifrost-cli" -version = "0.12.1" +version = "0.13.0" dependencies = [ "bifrost-primitives", "bifrost-service", diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index c30589326..1adb0e8fb 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bifrost-cli" -version = "0.12.1" +version = "0.13.0" authors = ["Liebi Technologies "] description = "Bifrost Parachain Node" build = "build.rs" diff --git a/runtime/bifrost-kusama/src/lib.rs b/runtime/bifrost-kusama/src/lib.rs index a0c7eded8..1145b8f69 100644 --- a/runtime/bifrost-kusama/src/lib.rs +++ b/runtime/bifrost-kusama/src/lib.rs @@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("bifrost"), impl_name: create_runtime_str!("bifrost"), authoring_version: 1, - spec_version: 12000, + spec_version: 13000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -1953,10 +1953,6 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic; -parameter_types! { - pub const CallSwitchgearPalletName: &'static str = "CallSwitchgear"; -} - impl cumulus_pallet_xcmp_queue::migration::v5::V5Config for Runtime { // This must be the same as the `ChannelInfo` from the `Config`: type ChannelList = ParachainSystem; @@ -1977,15 +1973,6 @@ pub mod migrations { pub type Unreleased = ( // permanent migration, do not remove pallet_xcm::migration::MigrateToLatestXcmVersion, - frame_support::migrations::RemovePallet< - CallSwitchgearPalletName, - ::DbWeight, - >, - cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5, - crate::migration::opengov::RankedCollectiveV1< - Runtime, - governance::fellowship::FellowshipCollectiveInstance, - >, ); } diff --git a/runtime/bifrost-polkadot/src/lib.rs b/runtime/bifrost-polkadot/src/lib.rs index 04c3d0a45..1d3dd1331 100644 --- a/runtime/bifrost-polkadot/src/lib.rs +++ b/runtime/bifrost-polkadot/src/lib.rs @@ -171,7 +171,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("bifrost_polkadot"), impl_name: create_runtime_str!("bifrost_polkadot"), authoring_version: 0, - spec_version: 12001, + spec_version: 13000, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -1863,10 +1863,6 @@ pub type CheckedExtrinsic = /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; -parameter_types! { - pub const CallSwitchgearPalletName: &'static str = "CallSwitchgear"; -} - impl cumulus_pallet_xcmp_queue::migration::v5::V5Config for Runtime { // This must be the same as the `ChannelInfo` from the `Config`: type ChannelList = ParachainSystem; @@ -1887,16 +1883,6 @@ pub mod migrations { pub type Unreleased = ( // permanent migration, do not remove pallet_xcm::migration::MigrateToLatestXcmVersion, - frame_support::migrations::RemovePallet< - CallSwitchgearPalletName, - ::DbWeight, - >, - cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5, - crate::migration::opengov::RankedCollectiveV1< - Runtime, - governance::fellowship::FellowshipCollectiveInstance, - >, - crate::migration::genesis_evm_storage::GenesisEVMStorage, ); }