diff options
author | 2019-11-14 22:49:56 +0000 | |
---|---|---|
committer | 2019-11-14 22:49:56 +0000 | |
commit | 6b0a2df41c024fa8e7da07f3b42a80f19840432e (patch) | |
tree | 8c8e619a72e2ce92ad659b5ae8620114e8ce254f | |
parent | e28294b22088298f94197fdbdea39ac816920514 (diff) | |
parent | 4fcb6ab7cc0a719a815b4038d48071553cc4daa5 (diff) | |
download | rtic-6b0a2df41c024fa8e7da07f3b42a80f19840432e.tar.gz rtic-6b0a2df41c024fa8e7da07f3b42a80f19840432e.tar.zst rtic-6b0a2df41c024fa8e7da07f3b42a80f19840432e.zip |
Merge #272v0.5.0
272: v0.5.0 final release r=perlindgren a=japaric
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | macros/Cargo.toml | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c858c56..c96df3c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## v0.5.0 - 2019-??-?? (currently in beta pre-release) +## v0.5.0 - 2019-11-14 ### Added @@ -297,7 +297,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0 - Initial release -[Unreleased]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.3...HEAD +[Unreleased]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.5.0...HEAD +[v0.5.0]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.3...v0.5.0 [v0.4.3]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.2...v0.4.3 [v0.4.2]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.1...v0.4.2 [v0.4.1]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.0...v0.4.1 @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rtfm" readme = "README.md" repository = "https://github.com/rtfm-rs/cortex-m-rtfm" -version = "0.5.0-beta.1" +version = "0.5.0" [lib] name = "rtfm" @@ -48,8 +48,8 @@ required-features = ["__v7"] [dependencies] cortex-m = "0.6.0" -cortex-m-rtfm-macros = { path = "macros", version = "0.5.0-beta.1" } -rtfm-core = "0.3.0-beta.2" +cortex-m-rtfm-macros = { path = "macros", version = "0.5.0" } +rtfm-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 46598038..9ab1db77 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rtfm-macros" readme = "../README.md" repository = "https://github.com/rtfm-rs/cortex-m-rtfm" -version = "0.5.0-beta.1" +version = "0.5.0" [lib] proc-macro = true @@ -21,7 +21,7 @@ proc-macro = true proc-macro2 = "1" quote = "1" syn = "1" -rtfm-syntax = "0.4.0-beta.2" +rtfm-syntax = "0.4.0" [features] heterogeneous = [] |