diff options
author | 2020-08-26 11:32:06 +0000 | |
---|---|---|
committer | 2020-08-26 11:32:06 +0000 | |
commit | 312331de58c1edbd9236364eb6209802f7bae35c (patch) | |
tree | ef37a9dcaa8413f8c9bf14df96e3158b8df7efb0 | |
parent | 846aa5062fe8d076558deca539be4ca594a96ea8 (diff) | |
parent | 5711a2472d9e8567d757c5d8fe8007b0fe08ac87 (diff) | |
download | rtic-312331de58c1edbd9236364eb6209802f7bae35c.tar.gz rtic-312331de58c1edbd9236364eb6209802f7bae35c.tar.zst rtic-312331de58c1edbd9236364eb6209802f7bae35c.zip |
Merge #350v0.5.4
350: Preparing for 0.5.4 release r=AfoHT a=korken89
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 2 |
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f33cd83..a2f105ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.5.4] - 2020-08-26 + +- **Soundness fix in RTIC**, it was previously possible to get the `cortex_m::Peripherals` more than once, causing UB. + ## [v0.5.3] - 2020-06-12 - Added migration guide from `cortex-m-rtfm` to `cortex-m-rtic` @@ -319,7 +323,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.3...HEAD +[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.4...HEAD +[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 [v0.5.1]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.5.0...v0.5.1 @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rtic" readme = "README.md" repository = "https://github.com/rtic-rs/cortex-m-rtic" -version = "0.5.3" +version = "0.5.4" [lib] name = "rtic" @@ -52,7 +52,7 @@ required-features = ["__v7"] [dependencies] cortex-m = "0.6.2" -cortex-m-rtic-macros = { path = "macros", version = "0.5.0" } +cortex-m-rtic-macros = { path = "macros", version = "0.5.1" } 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 2a4e4c82..c628a2a1 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.0" +version = "0.5.1" [lib] proc-macro = true |