diff options
author | 2020-11-14 16:07:08 +0000 | |
---|---|---|
committer | 2020-11-14 16:07:08 +0000 | |
commit | 5910cbeac5882670e6a1fd906e21ebcbcced2f83 (patch) | |
tree | b67b5fc63a73f95d058db82f9cfbf8f20359c56e | |
parent | d0a94cef56f15222705a25464972dd3b1f13ccc0 (diff) | |
parent | 0b5e960af3843cc68da9eb50a1c37c10f0f432a7 (diff) | |
download | cortex-m-5910cbeac5882670e6a1fd906e21ebcbcced2f83.tar.gz cortex-m-5910cbeac5882670e6a1fd906e21ebcbcced2f83.tar.zst cortex-m-5910cbeac5882670e6a1fd906e21ebcbcced2f83.zip |
Merge #294p-sh-v0.5.6
294: Fix docs.rs build, prepare for v0.5.6 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 | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/panic-semihosting/CHANGELOG.md b/panic-semihosting/CHANGELOG.md index 98b6453..95c3890 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.6] - 2020-11-14 + +- Fix update to docs.rs to build for an embedded target + ## [v0.5.5] - 2020-11-14 - Update docs.rs to build for an embedded target @@ -65,7 +69,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.5...HEAD +[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/p-sh-v0.5.6...HEAD +[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 [v0.5.3]: https://github.com/rust-embedded/panic-semihosting/compare/v0.5.2...v0.5.3 diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index f86f23f..46a3d2f 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.5" +version = "0.5.6" [dependencies] cortex-m = { path = "..", version = ">= 0.5.6, < 0.8" } @@ -21,5 +21,5 @@ exit = [] inline-asm = ["cortex-m-semihosting/inline-asm", "cortex-m/inline-asm"] jlink-quirks = ["cortex-m-semihosting/jlink-quirks"] -[package.emtadata.docs.rs] +[package.metadata.docs.rs] targets = ["thumbv6m-none-eabi"] |