Skip to content

Commit 15d574b

Browse files
committed
Prepare for cortex-m-rt 0.7.5
1 parent 4395bae commit 15d574b

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

cortex-m-rt/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.7.5]
11+
12+
- Fix incorrect dependency on cortex-m-rt-macros in v0.7.4 which led to
13+
incorrect HardFault handlers being generated.
14+
1015
## [v0.7.4]
1116

1217
- Add `zero-init-ram` feature to initialize RAM with zeros on startup.
@@ -629,7 +634,8 @@ section size addr
629634

630635
Initial release
631636

632-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...HEAD
637+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.5...HEAD
638+
[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...c-m-rt-v0.7.5
633639
[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...c-m-rt-v0.7.4
634640
[v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...c-m-rt-v0.7.3
635641
[v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.1...c-m-rt-v0.7.2

cortex-m-rt/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ 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.4"
15+
version = "0.7.5"
1616
autoexamples = true
1717
links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
1818
edition = "2021"
1919
rust-version = "1.60"
2020

2121
[dependencies]
22-
cortex-m-rt-macros = { path = "macros", version = "=0.7.0" }
22+
cortex-m-rt-macros = { path = "macros", version = "=0.7.5" }
2323

2424
[dev-dependencies]
2525
cortex-m = { version = "0.7.4", path = "../cortex-m" }

cortex-m-rt/macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt-macros"
99
repository = "https://github.com/rust-embedded/cortex-m"
10-
version = "0.7.0"
10+
version = "0.7.5"
1111
edition = "2021"
1212
rust-version = "1.60"
1313

0 commit comments

Comments
 (0)