From 098d193bd06c852b73bb097c22fcbe47d9653bab Mon Sep 17 00:00:00 2001 From: Adam Greig Date: Sun, 7 Mar 2021 02:30:49 +0000 Subject: [PATCH] Prepare for v0.7.2 release of cortex-m --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e86e715b..8d296335 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 diff --git a/Cargo.toml b/Cargo.toml index 963561ff..7e605a87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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