aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--panic-semihosting/CHANGELOG.md7
-rw-r--r--panic-semihosting/Cargo.toml5
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"]