diff options
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" } |