From afc8be91a85c34cc9ec913b6fe608decc9eaf673 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Thu, 31 Jul 2025 10:34:07 +0200 Subject: [PATCH] chore: Release embassy-executor version 0.8.0 --- embassy-executor/CHANGELOG.md | 2 ++ embassy-executor/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 ## Unreleased - ReleaseDate +## 0.8.0 - 2025-07-31 + - Added `SpawnToken::id` - Task pools are now statically allocated on stable rust. All `task-arena-size-*` features have been removed and are no longer necessary. - 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 @@ [package] name = "embassy-executor" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MIT OR Apache-2.0" description = "async/await executor designed for embedded usage"