Skip to content

Commit bc0aca8

Browse files
committed
Prepare for cortex-m-rt v0.7.4
1 parent d85d9c8 commit bc0aca8

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

cortex-m-rt/CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10-
- Add `zero-init-ram` feature to initialize RAM with zeros on startup. This can be necessary on
11-
safety-critical hardware to properly initialize memory integrity measures.
12-
- 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.
10+
## [v0.7.4]
11+
12+
- Add `zero-init-ram` feature to initialize RAM with zeros on startup.
13+
This can be necessary to properly initialise hardware error detection.
14+
- Add optional `exception` argument for `HardFault`.
15+
It has one option `trampoline` which is true by default. When set to false,
16+
no trampoline will be created and the function will be called as the
17+
exception handler directly.
1318
- MSRV increased to 1.60.0 to align with `embedded-hal` version 1.
19+
- Improve linker error message when code does not fit into flash.
1420

1521
## [v0.7.3]
1622

@@ -621,7 +627,8 @@ section size addr
621627

622628
Initial release
623629

624-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...HEAD
630+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...HEAD
631+
[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...c-m-rt-v0.7.4
625632
[v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...c-m-rt-v0.7.3
626633
[v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.1...c-m-rt-v0.7.2
627634
[v0.7.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.0...v0.7.1

cortex-m-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
1212
name = "cortex-m-rt"
1313
readme = "README.md"
1414
repository = "https://github.com/rust-embedded/cortex-m"
15-
version = "0.7.3"
15+
version = "0.7.4"
1616
autoexamples = true
1717
links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
1818
edition = "2021"

0 commit comments

Comments
 (0)