aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-10-27 13:08:49 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-10-27 13:51:49 +0200
commited7a8c8ea529ebc3ea7859c7e0f91871bb2772c2 (patch)
treedc5297c4a6858f4586229cec7de53c5cdcdafd1e
parent4134f02d65982e18784e87b046a11dab287f74c3 (diff)
downloadcortex-m-ed7a8c8ea529ebc3ea7859c7e0f91871bb2772c2.tar.gz
cortex-m-ed7a8c8ea529ebc3ea7859c7e0f91871bb2772c2.tar.zst
cortex-m-ed7a8c8ea529ebc3ea7859c7e0f91871bb2772c2.zip
v0.5.8
required to make a release we can publish now or wait for #120
-rw-r--r--CHANGELOG.md16
-rw-r--r--Cargo.toml2
2 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8680ed8..c23d3bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.5.8] - 2018-10-27
+
+### Added
+
+- `SCB` gained methods to set, clear and check the pending state of the PendSV
+ exception.
+
+- `SCB` gained methods to set, clear and check the pending state of the SysTick
+ exception.
+
+- `SCB` gained methods to set and get the priority of system handlers like
+ SVCall and SysTick.
+
## [v0.5.7] - 2018-09-06
### Added
@@ -508,7 +521,8 @@ fn main() {
- Functions to get the vector table
- Wrappers over miscellaneous instructions like `bkpt`
-[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.7...HEAD
+[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.8...HEAD
+[v0.5.8]: https://github.com/rust-embedded/cortex-m/compare/v0.5.7...v0.5.8
[v0.5.7]: https://github.com/rust-embedded/cortex-m/compare/v0.5.6...v0.5.7
[v0.5.6]: https://github.com/rust-embedded/cortex-m/compare/v0.5.5...v0.5.6
[v0.5.5]: https://github.com/rust-embedded/cortex-m/compare/v0.5.4...v0.5.5
diff --git a/Cargo.toml b/Cargo.toml
index dbe2e21..cf46c29 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "cortex-m"
readme = "README.md"
repository = "https://github.com/japaric/cortex-m"
-version = "0.5.7"
+version = "0.5.8"
[dependencies]
aligned = "0.2.0"