diff options
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 10 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index e853d76..4fbd779 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.7] - 2017-12-23 + +### Added + +- Support for overriding the DEBUG_MONITOR exception handler on ARMv7-M. + ## [v0.3.6] - 2017-10-03 ### Fixed @@ -173,7 +179,9 @@ section size addr Initial release -[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.3.5...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.3.7...HEAD +[v0.3.7]: https://github.com/japaric/cortex-m-rt/compare/v0.3.6...v0.3.7 +[v0.3.6]: https://github.com/japaric/cortex-m-rt/compare/v0.3.5...v0.3.6 [v0.3.5]: https://github.com/japaric/cortex-m-rt/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/japaric/cortex-m-rt/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/japaric/cortex-m-rt/compare/v0.3.2...v0.3.3 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 3a314c1..bc19955 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.3.6" +version = "0.3.7" [dependencies] cortex-m = "0.3.0" |