Skip to content

Commit

Permalink
Prepare for cortex-m-rt 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgreig authored and newAM committed Jun 30, 2024
1 parent ab31964 commit 690528c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion cortex-m-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ 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

## [v0.7.4]
Expand Down Expand Up @@ -631,7 +635,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

0 comments on commit 690528c

Please sign in to comment.