Skip to content
Merged
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
8 changes: 7 additions & 1 deletion cortex-m/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.7.9] - 2026-08-18

### Fixed
- `SCB::enable_icache` and `SCB::enable_dcache` now build the CCR address with
`movw`/`movt` instead of `ldr =`, fixing "out of range pc-relative fixup value"
errors when the asm block is inlined into a large function.
- The `basepri`, `basepri_max` and `faultmask` register modules are now available
(as stubs) when compiling for non-Cortex-M (host) targets. This was accidentally
removed in v0.7.8.

## [v0.7.8] - 2026-07-21

Expand Down Expand Up @@ -799,7 +804,8 @@ fn main() {
- Functions to get the vector table
- Wrappers over miscellaneous instructions like `bkpt`

[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.8...HEAD
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.9...HEAD
[v0.7.9]: https://github.com/rust-embedded/cortex-m/compare/v0.7.8...v0.7.9
[v0.7.8]: https://github.com/rust-embedded/cortex-m/compare/v0.7.7...v0.7.8
[v0.7.7]: https://github.com/rust-embedded/cortex-m/compare/v0.7.6...v0.7.7
[v0.7.6]: https://github.com/rust-embedded/cortex-m/compare/v0.7.5...v0.7.6
Expand Down
2 changes: 1 addition & 1 deletion cortex-m/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "cortex-m"
readme = "README.md"
repository = "https://github.com/rust-embedded/cortex-m"
edition = "2024"
version = "0.7.8"
version = "0.7.9"
links = "cortex-m" # prevent multiple versions of this crate to be linked together
rust-version = "1.85"

Expand Down