diff --git a/Cargo.lock b/Cargo.lock index 286674a9c..68e32bb51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1613,7 +1613,7 @@ dependencies = [ [[package]] name = "crab-runtime" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "cumulus-pallet-aura-ext", @@ -2622,7 +2622,7 @@ dependencies = [ [[package]] name = "darwinia" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "darwinia-account-migration" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "darwinia-deposit", @@ -2729,7 +2729,7 @@ dependencies = [ [[package]] name = "darwinia-asset-limit" -version = "6.6.5" +version = "6.7.0" dependencies = [ "frame-support", "frame-system", @@ -2740,7 +2740,7 @@ dependencies = [ [[package]] name = "darwinia-common-runtime" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "cumulus-primitives-core", @@ -2771,7 +2771,7 @@ dependencies = [ [[package]] name = "darwinia-deposit" -version = "6.6.5" +version = "6.7.0" dependencies = [ "darwinia-ethtx-forwarder", "darwinia-staking-traits", @@ -2796,7 +2796,7 @@ dependencies = [ [[package]] name = "darwinia-ethtx-forwarder" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "ethabi", @@ -2825,7 +2825,7 @@ dependencies = [ [[package]] name = "darwinia-precompile-assets" -version = "6.6.5" +version = "6.7.0" dependencies = [ "fp-evm", "frame-support", @@ -2846,7 +2846,7 @@ dependencies = [ [[package]] name = "darwinia-precompile-deposit" -version = "6.6.5" +version = "6.7.0" dependencies = [ "darwinia-deposit", "fp-evm", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "darwinia-precompile-staking" -version = "6.6.5" +version = "6.7.0" dependencies = [ "darwinia-deposit", "darwinia-staking", @@ -2888,7 +2888,7 @@ dependencies = [ [[package]] name = "darwinia-precompile-state-storage" -version = "6.6.5" +version = "6.7.0" dependencies = [ "fp-evm", "frame-support", @@ -2907,7 +2907,7 @@ dependencies = [ [[package]] name = "darwinia-runtime" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "cumulus-pallet-aura-ext", @@ -3008,7 +3008,7 @@ dependencies = [ [[package]] name = "darwinia-staking" -version = "6.6.5" +version = "6.7.0" dependencies = [ "darwinia-deposit", "darwinia-ethtx-forwarder", @@ -3038,7 +3038,7 @@ dependencies = [ [[package]] name = "darwinia-staking-traits" -version = "6.6.5" +version = "6.7.0" dependencies = [ "parity-scale-codec", "scale-info", @@ -3073,7 +3073,7 @@ dependencies = [ [[package]] name = "dc-inflation" -version = "6.6.5" +version = "6.7.0" dependencies = [ "dc-types", "primitive-types", @@ -3083,7 +3083,7 @@ dependencies = [ [[package]] name = "dc-primitives" -version = "6.6.5" +version = "6.7.0" dependencies = [ "dc-types", "fp-account", @@ -3093,7 +3093,7 @@ dependencies = [ [[package]] name = "dc-types" -version = "6.6.5" +version = "6.7.0" [[package]] name = "der" @@ -5751,7 +5751,7 @@ checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" [[package]] name = "koi-runtime" -version = "6.6.5" +version = "6.7.0" dependencies = [ "array-bytes 6.2.3", "cumulus-pallet-aura-ext", diff --git a/Cargo.toml b/Cargo.toml index 10de90666..554075b1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ edition = "2021" homepage = "https://darwinia.network" license = "GPL-3.0" repository = "https://github.com/darwinia-network/darwinia" -version = "6.6.5" +version = "6.7.0" [workspace.dependencies] # crates.io diff --git a/node/src/cli.rs b/node/src/cli.rs index 3fb32cdf5..622aed1f8 100644 --- a/node/src/cli.rs +++ b/node/src/cli.rs @@ -24,7 +24,7 @@ /// /// The worker binaries associated to the node binary should ensure that they are using the same /// version as the main node that started them. -pub const NODE_VERSION: &str = "6.6.5"; +pub const NODE_VERSION: &str = "6.7.0"; /// Sub-commands supported by the collator. #[derive(Debug, clap::Subcommand)] diff --git a/pallet/account-migration/src/mock.rs b/pallet/account-migration/src/mock.rs index e9a138182..40de7e77f 100644 --- a/pallet/account-migration/src/mock.rs +++ b/pallet/account-migration/src/mock.rs @@ -53,7 +53,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion { spec_name: sp_runtime::create_runtime_str!("Darwinia2"), impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"), authoring_version: 0, - spec_version: 6_6_5_0, + spec_version: 6_6_7_0, impl_version: 0, apis: sp_version::create_apis_vec!([]), transaction_version: 0, diff --git a/runtime/crab/src/lib.rs b/runtime/crab/src/lib.rs index 6040d6920..5d86cdbf9 100644 --- a/runtime/crab/src/lib.rs +++ b/runtime/crab/src/lib.rs @@ -80,7 +80,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion { spec_name: sp_runtime::create_runtime_str!("Crab2"), impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"), authoring_version: 0, - spec_version: 6_6_5_0, + spec_version: 6_6_7_0, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, diff --git a/runtime/darwinia/src/lib.rs b/runtime/darwinia/src/lib.rs index a692573cb..2faac00e7 100644 --- a/runtime/darwinia/src/lib.rs +++ b/runtime/darwinia/src/lib.rs @@ -80,7 +80,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion { spec_name: sp_runtime::create_runtime_str!("Darwinia2"), impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"), authoring_version: 0, - spec_version: 6_6_5_0, + spec_version: 6_6_7_0, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, diff --git a/runtime/koi/src/lib.rs b/runtime/koi/src/lib.rs index 3cf5fd2a3..804b4b95c 100644 --- a/runtime/koi/src/lib.rs +++ b/runtime/koi/src/lib.rs @@ -80,7 +80,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion { spec_name: sp_runtime::create_runtime_str!("Darwinia Koi"), impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"), authoring_version: 0, - spec_version: 6_6_6_2, + spec_version: 6_6_7_0, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0,