diff options
-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" |