Skip to content

Commit 061073f

Browse files
Release Kusama Coretime 1.2.3 (#293)
Cherry pick #286 onto the 1.2.2 release for a clean 1.2.3 release. This release is the one proposed in #288 The changelog from main is clipped to only include the relevant changes from the cherry picked commit. - A migration is added to onboard the people chain without the usual two sale boundary delay that came with the shift to coretime. - Another migration is added to clean up an outdated assignment in state from the old sale start before the leases were added. More info in the changelog of this PR and PR #286. - [ ] Does not require a CHANGELOG entry --------- Co-authored-by: joe petrowski <[email protected]>
1 parent aedbfc8 commit 061073f

File tree

3 files changed

+192
-170
lines changed

3 files changed

+192
-170
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ Changelog for the runtimes governed by the Polkadot Fellowship.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [1.2.3] 29.04.2024
8+
9+
### Added
10+
11+
- Add migration to Kusama Coretime to onboard People Chain without long delay ([polkadot-fellows/runtimes#286](https://github.com/polkadot-fellows/runtimes/pull/286))
12+
13+
### Fixed
14+
15+
- Clean up outdated assignment in Kusama Coretime Chain state ([polkadot-fellows/runtimes#286](https://github.com/polkadot-fellows/runtimes/pull/286))
16+
717
## [1.2.2] 20.04.2024
818

919
### Fixed

system-parachains/coretime/coretime-kusama/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ pub type UncheckedExtrinsic =
109109
/// Migrations to apply on runtime upgrade.
110110
pub type Migrations = (
111111
pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,
112-
migrations::bootstrapping::ImportLeases,
112+
migrations::bootstrapping::RemoveOutdatedPoolAssignment,
113+
migrations::bootstrapping::OnboardPeople,
113114
);
114115

115116
/// Executive: handles dispatch to the various modules.
@@ -133,7 +134,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
133134
spec_name: create_runtime_str!("coretime-kusama"),
134135
impl_name: create_runtime_str!("coretime-kusama"),
135136
authoring_version: 1,
136-
spec_version: 1_002_002,
137+
spec_version: 1_002_003,
137138
impl_version: 0,
138139
apis: RUNTIME_API_VERSIONS,
139140
transaction_version: 0,

0 commit comments

Comments
 (0)