All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
- Added inherent
implblock forMutex<RefCell<T>>to help reduce verbosity - Increased MSRV to 1.50.0
v1.0.0 - 2020-06-23
- Use
CriticalSection<'cs>everywhere instead of&'cs CriticalSection(this makes it a zero-sized type). - Removed the
const-fnfeature. - Removed the
Peripheralwrapper type. - Removed the
Nrtrait in favor of architecture-specific traits in downstream crates.
v0.2.5 - 2019-08-29
- The
const-fnfeature is now stable.
v0.2.4 - 2018-10-30
- Note in the documentation that
Mutexis not memory safe in multi-core systems.
- The
const-fnfeature can now be used on 1.31-beta and will also work on stable 1.31.
v0.2.3 - 2018-08-17
- A compilation error when using a recent nightly while the "const-fn" feature was enabled.
v0.2.2 - 2018-08-17 - YANKED
- A compilation error when using a recent nightly while the "const-fn" feature was enabled.
v0.2.1 - 2018-08-03
- Soundness issue where it was possible to borrow the contents of a Mutex for longer than the lifetime of the Mutex.
v0.2.0 - 2018-05-10 - YANKED
YANKED due to a soundness issue: see v0.2.1 for details
- [breaking-change]
const-fnis no longer a default feature (i.e. a feature that's enabled by default). The consequence is that this crate now compiles on 1.27 (beta) by default, and opting intoconst-fnrequires nightly.
v0.1.2 - 2018-04-24
- An opt-out "const-fn" Cargo feature. When this feature is disabled this crate compiles on stable.
v0.1.1 - 2017-09-19
- Added feature gate to make this work on recent nightlies
- Initial release