Skip to content

Commit 098d193

Browse files
committed
Prepare for v0.7.2 release of cortex-m
1 parent e8179ec commit 098d193

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.7.2] - 2021-03-07
11+
12+
### Fixed
13+
14+
- Fixed a bug where calling `asm::delay()` with an argument of 0 or 1 would
15+
underflow, leading to a very long delay.
16+
1017
## [v0.7.1] - 2021-01-25
1118

1219
### Added
@@ -682,7 +689,8 @@ fn main() {
682689
- Functions to get the vector table
683690
- Wrappers over miscellaneous instructions like `bkpt`
684691

685-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...HEAD
692+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...HEAD
693+
[v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...v0.7.2
686694
[v0.7.1]: https://github.com/rust-embedded/cortex-m/compare/v0.7.0...v0.7.1
687695
[v0.7.0]: https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.7.0
688696
[v0.6.7]: https://github.com/rust-embedded/cortex-m/compare/v0.6.6...v0.6.7

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name = "cortex-m"
1212
readme = "README.md"
1313
repository = "https://github.com/rust-embedded/cortex-m"
14-
version = "0.7.1"
14+
version = "0.7.2"
1515
edition = "2018"
1616
links = "cortex-m" # prevent multiple versions of this crate to be linked together
1717

0 commit comments

Comments
 (0)