diff --git a/CHANGELOG.md b/CHANGELOG.md index 00c2cd98..d63def7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.8] - 2019-03-18 + +### Fixed + +- Correct stack-pointer is selected on `HardFault` +- Linker template now takes and discard `*(.ARM.extab.*)` +- Misc. documentation fixes + +### Changed + +- Architecture added: `armv8-m.main` +- Cortex-M team added to `authors` + ## [v0.6.7] - 2018-12-15 ### Fixed @@ -429,7 +442,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.7...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.8...HEAD +[v0.6.8]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.7...v0.6.8 [v0.6.7]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.6...v0.6.7 [v0.6.6]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...v0.6.6 [v0.6.5]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...v0.6.5 diff --git a/Cargo.toml b/Cargo.toml index 29310d7c..de0cee22 100644 --- a/Cargo.toml +++ b/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.6.7" +version = "0.6.8" autoexamples = true [dependencies]