diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fea1e656..92a6fbe0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.3.0] - 2022-05-17 - Moving Turing xcm configs to their own file. - Allow foreign tokens to get stored on-chain - Enable cross chain token transfers - Lower existential deposit from .1 to .01 - Adding Karura tokens +- Ensure CollatorRegistration before joining candidate pool +- Update to substrate 0.9.19 ## [279] - 2022-04-29 - Change scheduled time slots from minutes to hours. Migration used to clear all tasks in existing maps and queues. diff --git a/Cargo.lock b/Cargo.lock index 00d1eb7ef..9a620973e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6339,7 +6339,7 @@ dependencies = [ [[package]] name = "parachain-staking" version = "3.0.0" -source = "git+https://github.com/OAK-Foundation/moonbeam?branch=oak-polkadot-v0.9.19#379ab28b7cbd891f702d10251d44bc838c8085da" +source = "git+https://github.com/OAK-Foundation/moonbeam?branch=oak-polkadot-v0.9.19#9824ec8ff4e6d84c049b6bff1f8d416a0d6c6bc9" dependencies = [ "frame-benchmarking", "frame-support", @@ -11667,7 +11667,7 @@ version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0" dependencies = [ - "cfg-if 1.0.0", + "cfg-if 0.1.10", "digest 0.10.3", "rand 0.8.5", "static_assertions", diff --git a/runtime/neumann/src/lib.rs b/runtime/neumann/src/lib.rs index 2235a5e32..f59497d9c 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -143,10 +143,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 280, + spec_version: 281, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 7, + transaction_version: 8, state_version: 0, }; @@ -553,6 +553,8 @@ impl parachain_staking::Config for Runtime { type OnCollatorPayout = (); /// Handler to notify the runtime when a new round begins type OnNewRound = (); + /// Whether a given collator has completed required registration to be selected as block author + type CollatorRegistration = Session; type WeightInfo = parachain_staking::weights::SubstrateWeight; } diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 74ccc95c8..d08847310 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -144,10 +144,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 280, + spec_version: 281, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 7, + transaction_version: 8, state_version: 0, }; @@ -565,6 +565,8 @@ impl parachain_staking::Config for Runtime { type OnCollatorPayout = (); /// Handler to notify the runtime when a new round begins type OnNewRound = (); + /// Whether a given collator has completed required registration to be selected as block author + type CollatorRegistration = Session; type WeightInfo = parachain_staking::weights::SubstrateWeight; }