Skip to content

Commit 2614870

Browse files
authored
Bump to version 201 (#1949)
* bump to version 201 * remove runtime migration
1 parent 23a3340 commit 2614870

File tree

6 files changed

+40
-47
lines changed

6 files changed

+40
-47
lines changed

Cargo.lock

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = ['node/*', 'pallets/*', 'runtime/*', 'support', 'precompiles/*','integ
1616
[workspace.package]
1717
authors = ['Parallel Team']
1818
repository = 'https://github.com/parallel-finance/parallel'
19-
version = '2.0.0'
19+
version = '2.0.1'
2020

2121
[workspace.dependencies]
2222
# Substrate dependencies

runtime/heiko/src/lib.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("heiko"),
181181
impl_name: create_runtime_str!("heiko"),
182182
authoring_version: 1,
183-
spec_version: 200,
183+
spec_version: 201,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,
@@ -2070,11 +2070,7 @@ pub type Executive = frame_executive::Executive<
20702070
frame_system::ChainContext<Runtime>,
20712071
Runtime,
20722072
AllPalletsWithSystem,
2073-
(
2074-
// "Use 2D weights in XCM v3" <https://github.com/paritytech/polkadot/pull/6134>
2075-
pallet_xcm::migration::v1::MigrateToV1<Runtime>,
2076-
pallet_asset_registry::migration::XcmV2ToV3AssetManager<Runtime>,
2077-
),
2073+
(),
20782074
>;
20792075

20802076
impl fp_self_contained::SelfContainedCall for RuntimeCall {

runtime/kerria/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("kerria"),
181181
impl_name: create_runtime_str!("kerria"),
182182
authoring_version: 1,
183-
spec_version: 200,
183+
spec_version: 201,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

runtime/parallel/src/lib.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
184184
spec_name: create_runtime_str!("parallel"),
185185
impl_name: create_runtime_str!("parallel"),
186186
authoring_version: 1,
187-
spec_version: 200,
187+
spec_version: 201,
188188
impl_version: 33,
189189
apis: RUNTIME_API_VERSIONS,
190190
transaction_version: 17,
@@ -2073,10 +2073,7 @@ pub type Executive = frame_executive::Executive<
20732073
frame_system::ChainContext<Runtime>,
20742074
Runtime,
20752075
AllPalletsWithSystem,
2076-
(
2077-
pallet_xcm::migration::v1::MigrateToV1<Runtime>,
2078-
pallet_asset_registry::migration::XcmV2ToV3AssetManager<Runtime>,
2079-
),
2076+
(),
20802077
>;
20812078

20822079
impl fp_self_contained::SelfContainedCall for RuntimeCall {

runtime/vanilla/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("vanilla"),
181181
impl_name: create_runtime_str!("vanilla"),
182182
authoring_version: 1,
183-
spec_version: 200,
183+
spec_version: 201,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

0 commit comments

Comments
 (0)