diff options
author | 2020-10-14 22:38:55 +0000 | |
---|---|---|
committer | 2020-10-14 22:38:55 +0000 | |
commit | a6be5607611beb55e4509abb873fbac32fbdf612 (patch) | |
tree | 3203ba69d1d365bc05dc99531088508ea1cecaf0 /cortex-m-semihosting | |
parent | 55d67fad459aac4d9f14571f305a8983f36138cb (diff) | |
parent | 81ab508769e5341176022e23068deae5b737e64b (diff) | |
download | cortex-m-a6be5607611beb55e4509abb873fbac32fbdf612.tar.gz cortex-m-a6be5607611beb55e4509abb873fbac32fbdf612.tar.zst cortex-m-a6be5607611beb55e4509abb873fbac32fbdf612.zip |
Merge #270p-sh-v0.5.4c-m-sh-v0.4.0
270: Prepare for release of new versions of cortex-m-semihosting and panic-semihosting r=therealprof a=adamgreig
For the next step in https://github.com/rust-embedded/cortex-m/pull/263#pullrequestreview-495095345, this PR increases the version number for panic-semihosting and cortex-m-semihosting. For c-m-sh this is a breaking change to include #269.
Both projects seem to build just fine with cortex-m master, so I anticipate they should work fine with the to-be-released 0.7, hence increasing the acceptable cortex-m version range.
The CHANGELOG links are a bit troublesome, so I've added new tags to this repo `c-m-sh-v0.3.5` and `p-sh-v0.5.3` which point to the merge commit, and I'll tag new `c-m-sh-v0.4.0` and `p-sh-v0.5.4` after this is merged.
Co-authored-by: Adam Greig <adam@adamgreig.com>
Diffstat (limited to 'cortex-m-semihosting')
-rw-r--r-- | cortex-m-semihosting/CHANGELOG.md | 7 | ||||
-rw-r--r-- | cortex-m-semihosting/Cargo.toml | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/cortex-m-semihosting/CHANGELOG.md b/cortex-m-semihosting/CHANGELOG.md index aa7cb9b..0abe647 100644 --- a/cortex-m-semihosting/CHANGELOG.md +++ b/cortex-m-semihosting/CHANGELOG.md @@ -5,7 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.4.0] - 2020-10-14 + +- Moved into cortex-m repository - Merge `HStdout` and `HStderr` into one type: `HostStream` +- Support cortex-m v0.7 ## [v0.3.5] - 2019-08-29 @@ -111,7 +115,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.5...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.0...HEAD +[v0.4.0]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.3.5...c-m-sh-v0.4.0 [v0.3.5]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.2...v0.3.3 diff --git a/cortex-m-semihosting/Cargo.toml b/cortex-m-semihosting/Cargo.toml index 8eb28b0..368e0f1 100644 --- a/cortex-m-semihosting/Cargo.toml +++ b/cortex-m-semihosting/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-semihosting" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.3.5" +version = "0.4.0" edition = "2018" [features] @@ -19,4 +19,4 @@ jlink-quirks = [] no-semihosting = [] [dependencies] -cortex-m = { path = "..", version = ">= 0.5.8, < 0.7" } +cortex-m = { path = "..", version = ">= 0.5.8, < 0.8" } |