diff options
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 11 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 9987bd5..cadeac0 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.1] + +## Fixes + +- Fix stack unwinding past `Reset` function ([#337]) + +[#337]: https://github.com/rust-embedded/cortex-m-rt/pull/337 + ## [v0.7.0] ### New Features @@ -572,7 +580,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.1...HEAD +[v0.7.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.11...v0.7.0 [v0.6.15]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.14...v0.6.15 [v0.6.14]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.13...v0.6.14 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 77c18ce..7250384 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m-rt" -version = "0.7.0" +version = "0.7.1" autoexamples = true links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked |