Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for cortex-m-rt 0.7.5 #533

Merged
merged 1 commit into from
Nov 5, 2024
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
18 changes: 16 additions & 2 deletions cortex-m-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions cortex-m-rt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion cortex-m-rt/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down