summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs1
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
diff --git a/Cargo.toml b/Cargo.toml
index 27e698c..e162936 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/src/lib.rs b/src/lib.rs
index 985aae6..09eeceb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -13,7 +13,6 @@
#![deny(warnings)]
#![feature(asm)]
#![feature(const_fn)]
-#![feature(const_unsafe_cell_new)]
#![no_std]
extern crate volatile_register;