From 697ee6e14cc56405c529fd74ad6019ce8733a41a Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Thu, 27 Aug 2020 14:45:29 +0200 Subject: [PATCH] Preparing v0.5.5 release --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- macros/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2f105ca53..faecd10dc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [v0.5.4] - 2020-08-26 +## [v0.5.5] - 2020-08-27 + +- Includes the previous soundness fix. +- Fixes wrong use of the `cortex_m` crate which can cause some projects to stop compiling. + +## [v0.5.4] - 2020-08-26 - YANKED - **Soundness fix in RTIC**, it was previously possible to get the `cortex_m::Peripherals` more than once, causing UB. @@ -323,7 +328,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0 - Initial release -[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.4...HEAD +[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.5...HEAD +[v0.5.5]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.4...v0.5.5 [v0.5.4]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.3...v0.5.4 [v0.5.3]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.1...v0.5.2 diff --git a/Cargo.toml b/Cargo.toml index 0e96e3922b..84576b94ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ required-features = ["__v7"] [dependencies] cortex-m = "0.6.2" -cortex-m-rtic-macros = { path = "macros", version = "0.5.1" } +cortex-m-rtic-macros = { path = "macros", version = "0.5.2" } rtic-core = "0.3.0" cortex-m-rt = "0.6.9" heapless = "0.5.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index c628a2a155..0a38d08b53 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rtic-macros" readme = "../README.md" repository = "https://github.com/rtic-rs/cortex-m-rtic" -version = "0.5.1" +version = "0.5.2" [lib] proc-macro = true