aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-executor/CHANGELOG.md2
-rw-r--r--embassy-executor/Cargo.toml2
2 files changed, 3 insertions, 1 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index 914863a83..3a809f075 100644
--- a/embassy-executor/CHANGELOG.md
+++ b/embassy-executor/CHANGELOG.md
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11## 0.8.0 - 2025-07-31
12
11- Added `SpawnToken::id` 13- Added `SpawnToken::id`
12- Task pools are now statically allocated on stable rust. All `task-arena-size-*` features have been removed and are no longer necessary. 14- Task pools are now statically allocated on stable rust. All `task-arena-size-*` features have been removed and are no longer necessary.
13- New trace hooks: `_embassy_trace_poll_start` & `_embassy_trace_task_end` 15- New trace hooks: `_embassy_trace_poll_start` & `_embassy_trace_task_end`
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index db3029967..5e950bf45 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-executor" 2name = "embassy-executor"
3version = "0.7.0" 3version = "0.8.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "async/await executor designed for embedded usage" 6description = "async/await executor designed for embedded usage"