diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 1 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ed36964..28d0fe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.8] - 2018-08-17 + +### Fixed + +- Compilation with recent nightlies + ## [v0.1.7] - 2017-09-21 ### Fixed @@ -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.7" +version = "0.1.8" [dependencies] volatile-register = "0.1.0" @@ -13,7 +13,6 @@ #![deny(warnings)] #![feature(asm)] #![feature(const_fn)] -#![feature(const_unsafe_cell_new)] #![no_std] extern crate volatile_register; |