diff options
author | 2023-02-26 16:47:24 +0100 | |
---|---|---|
committer | 2023-02-26 17:30:10 +0100 | |
commit | e1a0987dc2cff288a35359db48c3a7ca7e2807dc (patch) | |
tree | 34bfc21983627c96874bf123596ad9ac1241f016 | |
parent | dbc6964f8851ab9a54b55bd2620d5e1096e30f12 (diff) | |
download | rtic-e1a0987dc2cff288a35359db48c3a7ca7e2807dc.tar.gz rtic-e1a0987dc2cff288a35359db48c3a7ca7e2807dc.tar.zst rtic-e1a0987dc2cff288a35359db48c3a7ca7e2807dc.zip |
Release: v1.1.4
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 4 |
3 files changed, 14 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9432cab7..d1722781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ### Added +### Fixed + +### Changed + +## [v1.1.4] - 2023-02-26 + +### Added + - CFG: Support #[cfg] on HW task, cleanup for SW tasks - CFG: Slightly improved support for #[cfg] on Monotonics - CI: Check examples also for thumbv8.{base,main} @@ -551,7 +559,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/v1.1.3...HEAD +[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.4...HEAD +[v1.1.4]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.3...v1.1.4 [v1.1.3]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.2...v1.1.3 [v1.1.2]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.1...v1.1.2 [v1.1.1]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.0...v1.1.1 @@ -14,14 +14,14 @@ name = "cortex-m-rtic" readme = "README.md" repository = "https://github.com/rtic-rs/cortex-m-rtic" -version = "1.1.3" +version = "1.1.4" [lib] name = "rtic" [dependencies] cortex-m = "0.7.0" -cortex-m-rtic-macros = { path = "macros", version = "1.1.5" } +cortex-m-rtic-macros = { path = "macros", version = "1.1.6" } rtic-monotonic = "1.0.0" rtic-core = "1.0.0" heapless = "0.7.7" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index f1111e6c..c3f05614 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 = "1.1.5" +version = "1.1.6" [lib] proc-macro = true @@ -22,7 +22,7 @@ proc-macro2 = "1" proc-macro-error = "1" quote = "1" syn = "1" -rtic-syntax = "1.0.2" +rtic-syntax = "1.0.3" [features] debugprint = [] |