diff --git a/node/Cargo.toml b/node/Cargo.toml index 611f6190..3e81da09 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jur-node" -version = "2.1.0" +version = "2.1.1" edition = "2021" license = "Unlicense" publish = false @@ -55,7 +55,7 @@ frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/parityte frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" } # Local Dependencies -jur-node-runtime = { version = "2.1.0", path = "../runtime" } +jur-node-runtime = { version = "2.1.1", path = "../runtime" } primitives = { package = 'jur-primitives', path = '../primitives' } # CLI-specific dependencies diff --git a/pallets/community/src/migration.rs b/pallets/community/src/migration.rs index 87a49c46..ad675971 100644 --- a/pallets/community/src/migration.rs +++ b/pallets/community/src/migration.rs @@ -34,7 +34,7 @@ pub mod v7 { let current_version = Pallet::::current_storage_version(); let onchain_version = Pallet::::on_chain_storage_version(); - if onchain_version == 6 && current_version == 7 { + if onchain_version == 0 && current_version == 7 { let mut translated = 0u64; Communities::::translate::< OldCommunity< diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 06729065..0da579cc 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jur-node-runtime" -version = "2.1.0" +version = "2.1.1" edition = "2021" license = "Unlicense" publish = false diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 97eb7d17..2e1942b4 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -120,7 +120,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 107, + spec_version: 108, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,