Skip to content

Commit 12bcb8b

Browse files
bors[bot]korken89
andauthored
Merge #162
162: 0.6.1 release r=adamgreig a=korken89 There has been a lot of work, time to ship it :) Co-authored-by: Emil Fresk <[email protected]>
2 parents e79a0c9 + eff7efc commit 12bcb8b

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

+21-1
Original file line numberDiff line numberDiff 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

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/japaric/cortex-m"
14-
version = "0.6.0"
14+
version = "0.6.1"
1515
edition = "2018"
1616
links = "cortex-m" # prevent multiple versions of this crate to be linked together
1717

0 commit comments

Comments
 (0)