diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 64429627..d4bab576 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -- Add `zero-init-ram` feature to initialize RAM with zeros on startup. This can be necessary on - safety-critical hardware to properly initialize memory integrity measures. -- Add optional `exception` argument for `HardFault`. It has one option `trampoline` which is true by default. When set to false, no trampoline will be created and the function will be called as the exception handler directly. +## [v0.7.4] + +- Add `zero-init-ram` feature to initialize RAM with zeros on startup. + This can be necessary to properly initialise hardware error detection. +- Add optional `exception` argument for `HardFault`. + It has one option `trampoline` which is true by default. When set to false, + no trampoline will be created and the function will be called as the + exception handler directly. - MSRV increased to 1.60.0 to align with `embedded-hal` version 1. +- Improve linker error message when code does not fit into flash. ## [v0.7.3] @@ -621,7 +627,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...HEAD +[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 [v0.7.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.0...v0.7.1 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index b222f878..e945bac2 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.3" +version = "0.7.4" autoexamples = true links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked edition = "2021"