diff options
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 8 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 9987bd5..0896e30 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 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 |