Skip to content

Commit 653d218

Browse files
bors[bot]adamgreig
andauthored
Merge #335
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>
2 parents e8179ec + 098d193 commit 653d218

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)