From dd3ee4993cde42431e10c11f6321f19066d6c8e8 Mon Sep 17 00:00:00 2001 From: Wren Turkal Date: Fri, 10 Apr 2026 18:22:39 -0700 Subject: [PATCH 1/2] Update the cortex-m unreleased changelog. Related-to: #639 --- cortex-m/CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/cortex-m/CHANGELOG.md b/cortex-m/CHANGELOG.md index d87d00dc..727a3bd0 100644 --- a/cortex-m/CHANGELOG.md +++ b/cortex-m/CHANGELOG.md @@ -7,9 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Deprecated +- The `inline-asm` feature is now a currently a no-op, will be removed in a future major version + +### Changed +- Updated to edition 2024. - MSRV is 1.85 to match cortex-m-rt crate - Add `enter_unprivileged` function to switch to unprivileged mode (on the Process Stack, or `PSP`) - Updated references from 'Cortex-M Team' to 'Arm Team' +- Add ITNS field to NVIC peripheral. +- Expose more bits from within SCR. +- Refactor asm code to remove need for very old nightly toolchain. Everything is now compiled with + the default toolchain. +- The code should be clippy clean on all supported configurations now. +- Add embedded-hal 1.0 delays. ## [v0.7.7] - 2023-01-03 From 25eede26ad2e45a9c58ee54748cdfe790cf20e0f Mon Sep 17 00:00:00 2001 From: Wren Turkal Date: Fri, 10 Apr 2026 21:45:43 -0700 Subject: [PATCH 2/2] Update the cortex-m-rt unreleased changelog. --- cortex-m-rt/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 2679bcf8..0d230f65 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). copied `.data` to the VMA before relinquishing control. - Updated references from 'Cortex-M Team' to 'Arm Team' - Bump MSRV to 1.85 +- Updated to edition 2024 ## [v0.7.5]