diff options
author | 2016-11-19 10:25:18 -0500 | |
---|---|---|
committer | 2016-11-19 10:25:18 -0500 | |
commit | eec4c6466ee27cb1f92fd344ff5cb7aeab97cc5a (patch) | |
tree | f8617091b2a512d7c06da24cc033e687d6723c94 | |
parent | 32b48700cf8f139abcaeed743b11dd4ce4b75bda (diff) | |
download | cortex-m-eec4c6466ee27cb1f92fd344ff5cb7aeab97cc5a.tar.gz cortex-m-eec4c6466ee27cb1f92fd344ff5cb7aeab97cc5a.tar.zst cortex-m-eec4c6466ee27cb1f92fd344ff5cb7aeab97cc5a.zip |
release v0.1.5v0.1.5
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fb8902..5e7ac7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.5] + ### Added - `interrupt::Mutex`, a "mutex" based on critical sections. +### Changed + +- The closure that `interrupt::free` takes can now return a value. + ## [v0.1.4] ### Added @@ -46,7 +52,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/japaric/rustc-cfg/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/japaric/rustc-cfg/compare/v0.1.5...HEAD +[v0.1.5]: https://github.com/japaric/rustc-cfg/compare/v0.1.4...v0.1.5 [v0.1.4]: https://github.com/japaric/rustc-cfg/compare/v0.1.3...v0.1.4 [v0.1.3]: https://github.com/japaric/rustc-cfg/compare/v0.1.2...v0.1.3 [v0.1.2]: https://github.com/japaric/rustc-cfg/compare/v0.1.1...v0.1.2 @@ -6,7 +6,7 @@ keywords = ["arm", "cortex-m", "register", "peripheral"] license = "MIT OR Apache-2.0" name = "cortex-m" repository = "https://github.com/japaric/cortex-m" -version = "0.1.4" +version = "0.1.5" [dependencies] volatile-register = "0.1.0" |