Skip to content
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
6 changes: 5 additions & 1 deletion cortex-m-semihosting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.6.0] - 2026-07-20

- MSRV bumped to 1.85
- Updated references from 'Cortex-M Team' to 'Arm Team'
- Now uses `critical_section::Mutex` rather than `cortex_m::interrupt::free`

## [v0.5.0] - 2022-03-01

Expand Down Expand Up @@ -149,7 +152,8 @@ change.

- Initial release

[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.5.0...HEAD
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.6.0...HEAD
[v0.6.0]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.5.0...c-m-sh-v0.6.0
[v0.5.0]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.1...c-m-sh-v0.5.0
[v0.4.1]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.0...c-m-sh-v0.4.1
[v0.4.0]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.3.5...c-m-sh-v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion cortex-m-semihosting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "cortex-m-semihosting"
readme = "README.md"
repository = "https://github.com/rust-embedded/cortex-m"
version = "0.5.0"
version = "0.6.0"
edition = "2024"
rust-version = "1.85"

Expand Down
7 changes: 6 additions & 1 deletion panic-semihosting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.7.0] - 2026-07-20

- MSRV bumped to 1.85
- Updated references from 'Cortex-M Team' to 'Arm Team'
- Now uses `cortex-m-semihosting` version 0.6, which uses
`critical_section::Mutex` rather than `cortex_m::interrupt::free`

## [v0.6.0] - 2022-03-01

Expand Down Expand Up @@ -77,7 +81,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/p-sh-v0.6.0...HEAD
[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/p-sh-v0.7.0...HEAD
[v0.7.0]: https://github.com/rust-embedded/cortex-m/compare/p-sh-v0.6.0...p-sh-v0.7.0
[v0.6.0]: https://github.com/rust-embedded/cortex-m/compare/p-sh-v0.5.6...p-sh-v0.6.0
[v0.5.6]: https://github.com/rust-embedded/cortex-m/compare/p-sh-v0.5.5...p-sh-v0.5.6
[v0.5.5]: https://github.com/rust-embedded/cortex-m/compare/p-sh-v0.5.4...p-sh-v0.5.5
Expand Down
4 changes: 2 additions & 2 deletions panic-semihosting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ keywords = ["panic-handler", "panic-impl", "panic", "semihosting"]
license = "MIT OR Apache-2.0"
name = "panic-semihosting"
repository = "https://github.com/rust-embedded/cortex-m"
version = "0.6.0"
version = "0.7.0"
edition = "2024"
rust-version = "1.85"

[dependencies]
cortex-m = { path = "../cortex-m", version = ">= 0.5.6, < 0.8" }
cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.5.0, < 0.6" }
cortex-m-semihosting = { path = "../cortex-m-semihosting", version = "0.6" }

[features]
exit = []
Expand Down
Loading