File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.6.1] - 2019-08-21
11+
12+ ### Fixed
13+
14+ - Better ` Debug ` , ` PartialEq ` and ` Eq ` for more types
15+ - The ` delay ` function is fixed for Cortex-M0 MCUs
16+
17+ ### Added
18+
19+ - Static version of ` system_reset ` as ` system_reset2 `
20+ - Now uses ` links = "cortex-m" ` to not link multiple versions of the crate
21+ - Masking of the NVIC is added ` NVIC::{mask,unmask} `
22+ - Now Rust 2018 edition
23+ - ` {M,P}SPLIM ` access is now possible on ARMv8-M
24+
25+ ### Deprecation
26+
27+ - ` system_reset ` is deprecated in favor of ` sys_reset `
28+
1029## [ v0.6.0] - 2019-03-12
1130
1231### Fixed
@@ -542,7 +561,8 @@ fn main() {
542561- Functions to get the vector table
543562- Wrappers over miscellaneous instructions like ` bkpt `
544563
545- [ Unreleased ] : https://github.com/rust-embedded/cortex-m/compare/v0.6.0...HEAD
564+ [ Unreleased ] : https://github.com/rust-embedded/cortex-m/compare/v0.6.1...HEAD
565+ [ v0.6.0 ] : https://github.com/rust-embedded/cortex-m/compare/v0.6.0...v0.6.1
546566[ v0.6.0 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.8...v0.6.0
547567[ v0.5.8 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.7...v0.5.8
548568[ v0.5.7 ] : https://github.com/rust-embedded/cortex-m/compare/v0.5.6...v0.5.7
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111name = " cortex-m"
1212readme = " README.md"
1313repository = " https://github.com/japaric/cortex-m"
14- version = " 0.6.0 "
14+ version = " 0.6.1 "
1515edition = " 2018"
1616links = " cortex-m" # prevent multiple versions of this crate to be linked together
1717
You can’t perform that action at this time.
0 commit comments