Skip to content

Commit

Permalink
Bifrost v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SunTiebing committed Aug 9, 2024
1 parent dce465b commit b5fb590
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bifrost-cli"
version = "0.12.1"
version = "0.13.0"
authors = ["Liebi Technologies <bifrost@liebi.com>"]
description = "Bifrost Parachain Node"
build = "build.rs"
Expand Down
15 changes: 1 addition & 14 deletions runtime/bifrost-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -1953,10 +1953,6 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, Si
/// The payload being signed in transactions.
pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;

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;
Expand All @@ -1977,15 +1973,6 @@ pub mod migrations {
pub type Unreleased = (
// permanent migration, do not remove
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
frame_support::migrations::RemovePallet<
CallSwitchgearPalletName,
<Runtime as frame_system::Config>::DbWeight,
>,
cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5<Runtime>,
crate::migration::opengov::RankedCollectiveV1<
Runtime,
governance::fellowship::FellowshipCollectiveInstance,
>,
);
}

Expand Down
16 changes: 1 addition & 15 deletions runtime/bifrost-polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -1863,10 +1863,6 @@ pub type CheckedExtrinsic =
/// The payload being signed in transactions.
pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;

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;
Expand All @@ -1887,16 +1883,6 @@ pub mod migrations {
pub type Unreleased = (
// permanent migration, do not remove
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
frame_support::migrations::RemovePallet<
CallSwitchgearPalletName,
<Runtime as frame_system::Config>::DbWeight,
>,
cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5<Runtime>,
crate::migration::opengov::RankedCollectiveV1<
Runtime,
governance::fellowship::FellowshipCollectiveInstance,
>,
crate::migration::genesis_evm_storage::GenesisEVMStorage,
);
}

Expand Down

0 comments on commit b5fb590

Please sign in to comment.