File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
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
+
10
17
## [ v0.7.1] - 2021-01-25
11
18
12
19
### Added
@@ -682,7 +689,8 @@ fn main() {
682
689
- Functions to get the vector table
683
690
- Wrappers over miscellaneous instructions like ` bkpt `
684
691
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
686
694
[ v0.7.1 ] : https://github.com/rust-embedded/cortex-m/compare/v0.7.0...v0.7.1
687
695
[ v0.7.0 ] : https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.7.0
688
696
[ v0.6.7 ] : https://github.com/rust-embedded/cortex-m/compare/v0.6.6...v0.6.7
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = " cortex-m"
12
12
readme = " README.md"
13
13
repository = " https://github.com/rust-embedded/cortex-m"
14
- version = " 0.7.1 "
14
+ version = " 0.7.2 "
15
15
edition = " 2018"
16
16
links = " cortex-m" # prevent multiple versions of this crate to be linked together
17
17
You can’t perform that action at this time.
0 commit comments