diff options
author | 2017-09-21 17:11:59 +0200 | |
---|---|---|
committer | 2017-09-21 17:11:59 +0200 | |
commit | 2c970e751d84198c4007037c62bae8cca121b4e0 (patch) | |
tree | 4f240119a0692c00ab5ad4df5ee8d622b306b7a3 | |
parent | 3f4c581a9cd52c4ad14da2d7008d004a2d888f36 (diff) | |
download | cortex-m-2c970e751d84198c4007037c62bae8cca121b4e0.tar.gz cortex-m-2c970e751d84198c4007037c62bae8cca121b4e0.tar.zst cortex-m-2c970e751d84198c4007037c62bae8cca121b4e0.zip |
v0.1.7v0.1.7
-rw-r--r-- | CHANGELOG.md | 21 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 1 |
3 files changed, 16 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ea5af0c..ed36964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.7] - 2017-09-21 + +### Fixed + +- Compilation with recent nightlies + ## [v0.1.6] - 2017-01-22 ### Added @@ -60,10 +66,11 @@ 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.6...HEAD -[v0.1.6]: https://github.com/japaric/rustc-cfg/compare/v0.1.5...v0.1.6 -[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 -[v0.1.1]: https://github.com/japaric/rustc-cfg/compare/v0.1.0...v0.1.1 +[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.1.7...HEAD +[v0.1.7]: https://github.com/japaric/cortex-m/compare/v0.1.6...v0.1.7 +[v0.1.6]: https://github.com/japaric/cortex-m/compare/v0.1.5...v0.1.6 +[v0.1.5]: https://github.com/japaric/cortex-m/compare/v0.1.4...v0.1.5 +[v0.1.4]: https://github.com/japaric/cortex-m/compare/v0.1.3...v0.1.4 +[v0.1.3]: https://github.com/japaric/cortex-m/compare/v0.1.2...v0.1.3 +[v0.1.2]: https://github.com/japaric/cortex-m/compare/v0.1.1...v0.1.2 +[v0.1.1]: https://github.com/japaric/cortex-m/compare/v0.1.0...v0.1.1 @@ -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.6" +version = "0.1.7" [dependencies] volatile-register = "0.1.0" @@ -13,6 +13,7 @@ #![deny(warnings)] #![feature(asm)] #![feature(const_fn)] +#![feature(const_unsafe_cell_new)] #![no_std] extern crate volatile_register; |