aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Babak <alexanderbabak@proton.me>2025-03-22 11:58:38 +0100
committerEmil Fresk <emil.fresk@gmail.com>2025-03-27 14:47:11 +0000
commit78e9127fc53f7fa3dfe2f66705426b78f106daa0 (patch)
tree6d6465b41f1bbb049c0a0fea523e6293dcc37902
parentff3b1ad5273d16714f7d786d48b3bd06d433a9e6 (diff)
chore: changelog entry
-rw-r--r--rtic-macros/CHANGELOG.md1
-rw-r--r--rtic/CHANGELOG.md1
2 files changed, 2 insertions, 0 deletions
diff --git a/rtic-macros/CHANGELOG.md b/rtic-macros/CHANGELOG.md
index 7f5cd80..0f534e8 100644
--- a/rtic-macros/CHANGELOG.md
+++ b/rtic-macros/CHANGELOG.md
@@ -8,6 +8,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## [Unreleased]
- Adapt `slic` backends to new version with `mecall`
+- Allow software tasks to be diverging (return `!`) and give them `'static` context.
## [v2.1.1] - 2024-12-06
diff --git a/rtic/CHANGELOG.md b/rtic/CHANGELOG.md
index a65e207..d8f14ce 100644
--- a/rtic/CHANGELOG.md
+++ b/rtic/CHANGELOG.md
@@ -25,6 +25,7 @@ Example:
- Updated esp32c3 dependency to v0.28.0
- Placate clippy
- Updated esp32c3 dependency to v0.27.0
+- Allow software tasks to be diverging (return `!`) and give them `'static` context.
### Added