Skip to content

Commit 8fd4547

Browse files
bors[bot]japaric
andcommitted
Merge #121
121: v0.5.8 r=therealprof a=japaric required to make a release we can publish now or wait for #120 Co-authored-by: Jorge Aparicio <[email protected]>
2 parents 4134f02 + b6a4eba commit 8fd4547

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.5.8] - 2018-10-27
11+
12+
### Added
13+
14+
- `SCB` gained methods to set, clear and check the pending state of the PendSV
15+
exception.
16+
17+
- `SCB` gained methods to set, clear and check the pending state of the SysTick
18+
exception.
19+
20+
- `SCB` gained methods to set and get the priority of system handlers like
21+
SVCall and SysTick.
22+
23+
- `NVIC` gained *static* methods, `pend` and `unpend`, to set and clear the
24+
pending state of interrupts.
25+
26+
### Changed
27+
28+
- The `NVIC.{clear,set}_pending` methods have been deprecated in favor of
29+
`NVIC::{unpend,pend}`.
30+
1031
## [v0.5.7] - 2018-09-06
1132

1233
### Added
@@ -508,7 +529,8 @@ fn main() {
508529
- Functions to get the vector table
509530
- Wrappers over miscellaneous instructions like `bkpt`
510531

511-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.7...HEAD
532+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.8...HEAD
533+
[v0.5.8]: https://github.com/rust-embedded/cortex-m/compare/v0.5.7...v0.5.8
512534
[v0.5.7]: https://github.com/rust-embedded/cortex-m/compare/v0.5.6...v0.5.7
513535
[v0.5.6]: https://github.com/rust-embedded/cortex-m/compare/v0.5.5...v0.5.6
514536
[v0.5.5]: https://github.com/rust-embedded/cortex-m/compare/v0.5.4...v0.5.5

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
name = "cortex-m"
99
readme = "README.md"
1010
repository = "https://github.com/japaric/cortex-m"
11-
version = "0.5.7"
11+
version = "0.5.8"
1212

1313
[dependencies]
1414
aligned = "0.2.0"

0 commit comments

Comments
 (0)