From 50bd8879016c40d88d99e49dd411c511ba8bd51b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 17:06:15 +0000 Subject: [PATCH] chore: release v11.2.1 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee4da5c..3c9d874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.2.1](https://github.com/rust-embedded/aarch64-cpu/compare/v11.2.0...v11.2.1) - 2026-03-30 + +### Other + +- Remove debug_assert from DAIFSet/DAIFClr +- Minimize unsafe scope and add debug_assert for DAIFSet/DAIFClr +- Add DAIFSet and DAIFClr register definitions +- Add missing runs-on: line to CI +- Update MIT file copyright line to 2026. +- Adds an example program for Armv8-R AArch64 - the 64-bit version of Armv8-R. +- Reflect the owning team's name change from Cortex-A Team to Arm Team. +- Merge pull request #65 from kisum9/remove-esr_el1-unused-value +- Remove unused HVC64 and SMC64 values + - Noted change from Cortex-A Team to Arm Team in README - Added Armv8-R AArch64 example program diff --git a/Cargo.toml b/Cargo.toml index ee30979..9675603 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aarch64-cpu" -version = "11.2.0" +version = "11.2.1" authors = ["Andre Richter "] description = "Low level access to processors using the AArch64 execution state" homepage = "https://github.com/rust-embedded/aarch64-cpu"