diff options
author | 2021-01-25 11:03:14 +0000 | |
---|---|---|
committer | 2021-01-25 11:03:14 +0000 | |
commit | ad7e01b4139db7bdc62d1bb5445da3d7587c7812 (patch) | |
tree | 46eb0cb42c6cc5b7fbc95128ef192b5ae3bded0c | |
parent | 465f303bd1453693c76f098ef0454fb769e25258 (diff) | |
parent | 4b7764a1b2bdaa25ee4994e786af704fe21fa0f3 (diff) | |
download | cortex-m-ad7e01b4139db7bdc62d1bb5445da3d7587c7812.tar.gz cortex-m-ad7e01b4139db7bdc62d1bb5445da3d7587c7812.tar.zst cortex-m-ad7e01b4139db7bdc62d1bb5445da3d7587c7812.zip |
Merge #320v0.7.1
320: Prepare for v0.7.1 r=therealprof a=adamgreig
Includes:
* Deprecate msp::write #297
* New syscall and bootstrap ASM #299
* More compiler fences #311
* asm::delay timing fix #312
* asm::delay clobber fix #317
* LTO for ASM fix #318
Doesn't include anything to help with #304 which might be nice to fix but can come in 0.7.2 and might need some time to think about.
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e603cb..c3fcf8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.1] - 2021-01-25 + ### Added - New assembly methods `asm::semihosting_syscall`, `asm::bootstrap`, and @@ -668,8 +670,10 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...HEAD +[v0.7.1]: https://github.com/rust-embedded/cortex-m/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.7.0 +[v0.6.5]: https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.6.5 [v0.6.4]: https://github.com/rust-embedded/cortex-m/compare/v0.6.3...v0.6.4 [v0.6.3]: https://github.com/rust-embedded/cortex-m/compare/v0.6.2...v0.6.3 [v0.6.2]: https://github.com/rust-embedded/cortex-m/compare/v0.6.1...v0.6.2 @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.0" +version = "0.7.1" edition = "2018" links = "cortex-m" # prevent multiple versions of this crate to be linked together |