Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/aarch64-cpu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ 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/aarch64-cpu-v11.2.0...aarch64-cpu-v11.2.1) - 2026-06-25

### Other

- Add MPU support (along with improved Timer APIs)
- Move aarch64-cpu package from / into /packages/aarch64-cpu

- Noted change from Cortex-A Team to Arm Team in README
- Added Armv8-R AArch64 example program

Expand Down
2 changes: 1 addition & 1 deletion packages/aarch64-cpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aarch64-cpu"
version = "11.2.0"
version = "11.2.1"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
description = "Low level access to processors using the AArch64 execution state"
homepage = "https://github.com/rust-embedded/aarch64-cpu"
Expand Down
14 changes: 14 additions & 0 deletions packages/aarch64-pmsa-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

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]

## [0.1.1](https://github.com/rust-embedded/aarch64-cpu/compare/aarch64-pmsa-rt-v0.1.0...aarch64-pmsa-rt-v0.1.1) - 2026-06-25

### Other

- updated the following local packages: aarch64-cpu
4 changes: 2 additions & 2 deletions packages/aarch64-pmsa-rt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2024"
name = "aarch64-pmsa-rt"
version = "0.1.0"
version = "0.1.1"
description = "A startup library for AArch64 systems that implement a PMSA (Protected Memory Systems Architecture)"
homepage = "https://github.com/rust-embedded/aarch64-cpu"
repository = "https://github.com/rust-embedded/aarch64-cpu"
Expand All @@ -16,4 +16,4 @@ doctest = false
test = false

[dependencies]
aarch64-cpu = { path = "../aarch64-cpu", version = "11.2.0" }
aarch64-cpu = { path = "../aarch64-cpu", version = "11.2.1" }