diff options
author | 2021-03-07 22:41:15 +0000 | |
---|---|---|
committer | 2021-03-07 22:41:15 +0000 | |
commit | 653d218e39bb5dad14a0995f3753cbbd1569c9bf (patch) | |
tree | 56c8202b414f77e4f0c40a792efcf316ee9e8f54 | |
parent | e8179ecc6f7590fd014e1d25da1ba708535e5ede (diff) | |
parent | 098d193bd06c852b73bb097c22fcbe47d9653bab (diff) | |
download | cortex-m-653d218e39bb5dad14a0995f3753cbbd1569c9bf.tar.gz cortex-m-653d218e39bb5dad14a0995f3753cbbd1569c9bf.tar.zst cortex-m-653d218e39bb5dad14a0995f3753cbbd1569c9bf.zip |
Merge #335v0.7.2
335: Prepare for v0.7.2 release of cortex-m r=thalesfragoso a=adamgreig
We've had #328 merged for a while and it fixes a pretty annoying bug which is still in the wild. Can anything think of anything else to get in before a release? If there's nothing coming up (I think #282 needs some more discussion and #331 won't affect the published crate itself) we could get this released.
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e86e715..8d29633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.2] - 2021-03-07 + +### Fixed + +- Fixed a bug where calling `asm::delay()` with an argument of 0 or 1 would + underflow, leading to a very long delay. + ## [v0.7.1] - 2021-01-25 ### Added @@ -682,7 +689,8 @@ 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.1...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...HEAD +[v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...v0.7.2 [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.7]: https://github.com/rust-embedded/cortex-m/compare/v0.6.6...v0.6.7 @@ -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.1" +version = "0.7.2" edition = "2018" links = "cortex-m" # prevent multiple versions of this crate to be linked together |