summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar bors[bot] <bors[bot]@users.noreply.github.com> 2018-05-13 10:01:24 +0000
committerGravatar bors[bot] <bors[bot]@users.noreply.github.com> 2018-05-13 10:01:24 +0000
commitf63d0c0114e50538cd65a18c2f2e1b1d6dcd5e8f (patch)
treeff8aafbff8ea9e0bcb6c2bbf67989ddcdcd6709c /CHANGELOG.md
parent7a0ba8063a181e1b8df9673fdd9e83d10c451678 (diff)
parent0e468eb30aa368319fa93d6266653477353efae1 (diff)
downloadcortex-m-0.5.1.tar.gz
cortex-m-0.5.1.tar.zst
cortex-m-0.5.1.zip
Merge #90v0.5.1
90: add a "const-fn" feature r=japaric a=japaric Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4453722..77236e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## [v0.5.1] - 2018-05-13
+
+### Added
+
+- An opt-in `"const-fn"` feature that makes `Mutex.new` constructor into a `const fn`. This feature
+ requires a nightly toolchain.
+
## [v0.5.0] - 2018-05-11
### Added
@@ -44,6 +51,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- [breaking-change] removed several fields from `cpuid::RegisterBlock` on ARMv6-M. These registers
are not available on that sub-architecture.
+- [breaking-change] The `Mutex.new` constructor is not a `const fn` by default. To make it a `const
+ fn` you have to opt into the `"const-fn"` feature, which was added in v0.5.1, and switch to a
+ nightly compiler.
+
### Removed
- [breaking-change] The `exception` module has been removed. A replacement for `Exception::active`