Skip to content

Commit 690528c

Browse files
adamgreignewAM
authored andcommitted
Prepare for cortex-m-rt 0.7.5
1 parent ab31964 commit 690528c

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

cortex-m-rt/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ 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.
1014
- MSRV is now Rust 1.61 to support syn verions >=2.0.68
1115

1216
## [v0.7.4]
@@ -631,7 +635,8 @@ section size addr
631635

632636
Initial release
633637

634-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...HEAD
638+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.5...HEAD
639+
[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...c-m-rt-v0.7.5
635640
[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...c-m-rt-v0.7.4
636641
[v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...c-m-rt-v0.7.3
637642
[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.61"
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.61"
1313

0 commit comments

Comments
 (0)