diff options
author | 2021-03-07 02:30:49 +0000 | |
---|---|---|
committer | 2021-03-07 02:30:49 +0000 | |
commit | 098d193bd06c852b73bb097c22fcbe47d9653bab (patch) | |
tree | 56c8202b414f77e4f0c40a792efcf316ee9e8f54 | |
parent | e8179ecc6f7590fd014e1d25da1ba708535e5ede (diff) | |
download | cortex-m-098d193bd06c852b73bb097c22fcbe47d9653bab.tar.gz cortex-m-098d193bd06c852b73bb097c22fcbe47d9653bab.tar.zst cortex-m-098d193bd06c852b73bb097c22fcbe47d9653bab.zip |
Prepare for v0.7.2 release of cortex-m
-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 |