diff --git a/CHANGELOG.md b/CHANGELOG.md index a5717ec93..fa1c905b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ 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] -- switched scheduled time slots from minutes to hours. Migration used to clear all tasks in existing maps and queues. + +## [279] - 2022-04-29 +- Change scheduled time slots from minutes to hours. Migration used to clear all tasks in existing maps and queues. +- Change max tasks in a given slot to 256 per hour. +- Added recurring tasks feature to schedule up to 24 recurring executions for a single task. ## [1.2.8] - 2022-04-05 - Updated to substrate 0.9.18 diff --git a/pallets/automation-time/src/lib.rs b/pallets/automation-time/src/lib.rs index 654a1659d..cf6fc20ab 100644 --- a/pallets/automation-time/src/lib.rs +++ b/pallets/automation-time/src/lib.rs @@ -63,7 +63,7 @@ pub use weights::WeightInfo; // NOTE: this is the current storage version for the code. // On migration, you will need to increment this. -const CURRENT_CODE_STORAGE_VERSION: StorageVersion = StorageVersion::new(1); +const CURRENT_CODE_STORAGE_VERSION: StorageVersion = StorageVersion::new(2); #[frame_support::pallet] pub mod pallet { diff --git a/runtime/neumann/src/lib.rs b/runtime/neumann/src/lib.rs index 30e5197ba..2072f52c4 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -165,10 +165,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 278, + spec_version: 279, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 5, + transaction_version: 6, state_version: 0, }; diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 3a47a291d..6231c3a26 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -172,10 +172,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 278, + spec_version: 279, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 5, + transaction_version: 6, state_version: 0, };