diff options
author | 2020-11-14 14:11:17 +0000 | |
---|---|---|
committer | 2020-11-14 14:11:17 +0000 | |
commit | d0a94cef56f15222705a25464972dd3b1f13ccc0 (patch) | |
tree | fe76c0fb677953521c2a2b0c7c806baa1e67b39c | |
parent | 289daf9f3fc536d9b3f66a3c615175e3df07ce19 (diff) | |
parent | c4180dfe36049dff3151f6949d4d74e109731076 (diff) | |
download | cortex-m-d0a94cef56f15222705a25464972dd3b1f13ccc0.tar.gz cortex-m-d0a94cef56f15222705a25464972dd3b1f13ccc0.tar.zst cortex-m-d0a94cef56f15222705a25464972dd3b1f13ccc0.zip |
Merge #293p-sh-v0.5.5
293: Build panic-semihosting for embedded target. Prepares v0.5.5. Closes #287. r=jonas-schievink a=adamgreig
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | panic-semihosting/CHANGELOG.md | 7 | ||||
-rw-r--r-- | panic-semihosting/Cargo.toml | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/panic-semihosting/CHANGELOG.md b/panic-semihosting/CHANGELOG.md index bf50092..98b6453 100644 --- a/panic-semihosting/CHANGELOG.md +++ b/panic-semihosting/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.5.5] - 2020-11-14 + +- Update docs.rs to build for an embedded target + ## [v0.5.4] - 2020-10-14 - Moved into cortex-m repository @@ -61,7 +65,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.4...HEAD +[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/p-sh-v0.5.5...HEAD +[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 [v0.5.3]: https://github.com/rust-embedded/panic-semihosting/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/rust-embedded/panic-semihosting/compare/v0.5.1...v0.5.2 diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index d38b0cd..f86f23f 100644 --- a/panic-semihosting/Cargo.toml +++ b/panic-semihosting/Cargo.toml @@ -10,7 +10,7 @@ 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.4" +version = "0.5.5" [dependencies] cortex-m = { path = "..", version = ">= 0.5.6, < 0.8" } @@ -20,3 +20,6 @@ cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.3, < exit = [] inline-asm = ["cortex-m-semihosting/inline-asm", "cortex-m/inline-asm"] jlink-quirks = ["cortex-m-semihosting/jlink-quirks"] + +[package.emtadata.docs.rs] +targets = ["thumbv6m-none-eabi"] |