diff options
author | 2018-01-16 20:05:46 +0100 | |
---|---|---|
committer | 2018-01-16 20:05:46 +0100 | |
commit | 7ab9cf4bfb9687518b81dbd25b6ec54c4da50e17 (patch) | |
tree | e0f02531304ab12647e2b06222247a38e24d3635 | |
parent | b03a7c4348c1c5ca2b4dbbfdadf6dd7e1b251518 (diff) | |
download | cortex-m-7ab9cf4bfb9687518b81dbd25b6ec54c4da50e17.tar.gz cortex-m-7ab9cf4bfb9687518b81dbd25b6ec54c4da50e17.tar.zst cortex-m-7ab9cf4bfb9687518b81dbd25b6ec54c4da50e17.zip |
v0.4.1v0.4.1
-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 869bac6..912a141 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.4.1] - 2018-01-16 + +### Changed + +- `peripheral::Peripherals` is now re-exported at the root of the crate. + ## [v0.4.0] - 2018-01-15 ### Added @@ -379,7 +385,8 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.1...HEAD +[v0.4.1]: https://github.com/japaric/cortex-m/compare/v0.4.0...v0.4.1 [v0.4.0]: https://github.com/japaric/cortex-m/compare/v0.3.1...v0.4.0 [v0.3.1]: https://github.com/japaric/cortex-m/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/japaric/cortex-m/compare/v0.2.11...v0.3.0 @@ -7,7 +7,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.4.0" +version = "0.4.1" [dependencies] aligned = "0.1.1" |