diff options
Diffstat (limited to 'panic-semihosting')
-rw-r--r-- | panic-semihosting/CHANGELOG.md | 5 | ||||
-rw-r--r-- | panic-semihosting/Cargo.toml | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/panic-semihosting/CHANGELOG.md b/panic-semihosting/CHANGELOG.md index 5f7bf7b..1fa6de3 100644 --- a/panic-semihosting/CHANGELOG.md +++ b/panic-semihosting/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.0] - 2022-03-01 + - Always use inline-asm, requiring Rust 1.59. - Remove inline-asm feature. @@ -72,7 +74,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.5.6...HEAD +[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/p-sh-v0.6.0...HEAD +[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 [v0.5.4]: https://github.com/rust-embedded/cortex-m/compare/p-sh-v0.5.3...p-sh-v0.5.4 diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index 4aaadb4..f096614 100644 --- a/panic-semihosting/Cargo.toml +++ b/panic-semihosting/Cargo.toml @@ -10,13 +10,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.5.6" +version = "0.6.0" rust-version = "1.59" edition = "2021" [dependencies] cortex-m = { path = "..", version = ">= 0.5.6, < 0.8" } -cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.3, < 0.5" } +cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.5.0, < 0.6" } [features] exit = [] |