aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Ursprung <[email protected]>2025-06-11 09:47:25 +0200
committerRalph Ursprung <[email protected]>2025-07-08 23:05:48 +0200
commit1c515937ff69cf2358118e13a9a70178dd7a99a0 (patch)
tree3157fab3dcbbe142d57894da07551178f570f375
parent27bae26172757b15597f497b5e3d30d5dc18bd98 (diff)
prepare changelog for `embassy-executor` v0.8.0
-rw-r--r--embassy-executor/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index 608c67724..19e41e3e7 100644
--- a/embassy-executor/CHANGELOG.md
+++ b/embassy-executor/CHANGELOG.md
@@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## unreleased 8## unreleased
9 9
10- Added `SpawnToken::id`
11- Task pools are now statically allocated on stable rust. All `task-arena-size-*` features have been removed and are no longer necessary.
12- New trace hooks: `_embassy_trace_poll_start` & `_embassy_trace_task_end`
13- Added task naming capability to tracing infrastructure
14- Added `Executor::id` & `Spawner::executor_id`
15- Disable `critical-section/std` for arch-std
16- Added possibility to select an executor in `#[embassy_executor::main]`
17- Fix AVR executor
18- executor: Make state implementations and their conditions match
10- Added support for Cortex-A and Cortex-R 19- Added support for Cortex-A and Cortex-R
20- Added support for `-> impl Future<Output = ()>` in `#[task]`
21- Fixed `Send` unsoundness with `-> impl Future` tasks
22- Marked `Spawner::for_current_executor` as `unsafe`
11 23
12## 0.7.0 - 2025-01-02 24## 0.7.0 - 2025-01-02
13 25