diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 3d47d287..c8ab92c9 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,8 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.5] + +- Fix incorrect dependency on cortex-m-rt-macros in v0.7.4 which led to + incorrect HardFault handlers being generated. - MSRV is now Rust 1.61 to support syn verions >=2.0.68 -- The `_stack_end` symbol is added, e.g. for use with MSPLIM. +- The `_stack_end` symbol is added, e.g. for use with MSPLIM (#565) +- Macros now expand to include an `unsafe` block and `allow(static_mut_refs)` + when generating the `&'static mut` references in entry/interrupt handlers + (#561, #558) +- `expect` attribute now permitted on entry/interrupt handlers (#557) +- Up to 496 interrupts now permitted on ARMv8-M (#555) +- Add new `paint-stack` feature which writes a fixed value to the entire stack + during initialisation (#548) +- The hard fault handler `_HardFault` is now placed in the `.HardFault.user` + linker section (#535) ## [v0.7.4] @@ -632,7 +645,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.5...HEAD +[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...c-m-rt-v0.7.5 [v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...c-m-rt-v0.7.4 [v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...c-m-rt-v0.7.3 [v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.1...c-m-rt-v0.7.2 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 818c500e..eaa84df0 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -12,14 +12,14 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.4" +version = "0.7.5" autoexamples = true links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked edition = "2021" rust-version = "1.61" [dependencies] -cortex-m-rt-macros = { path = "macros", version = "=0.7.0" } +cortex-m-rt-macros = { path = "macros", version = "=0.7.5" } [dev-dependencies] cortex-m = { version = "0.7.4", path = "../cortex-m" } diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 6a1b352a..f0867206 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt-macros" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.0" +version = "0.7.5" edition = "2021" rust-version = "1.61"