aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/CHANGELOG.md5
-rw-r--r--embassy-executor/Cargo.toml2
2 files changed, 6 insertions, 1 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index b342ccc32..e07e3924f 100644
--- a/embassy-executor/CHANGELOG.md
+++ b/embassy-executor/CHANGELOG.md
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## Unreleased 8## Unreleased
9 9
10## 0.6.3 - 2024-11-12
11
12- Building with the `nightly` feature now works with the Xtensa Rust compiler 1.82.
13- Compare vtable address instead of contents. Saves 44 bytes of flash on cortex-m.
14
10## 0.6.2 - 2024-11-06 15## 0.6.2 - 2024-11-06
11 16
12- The `nightly` feature no longer requires `nightly-2024-09-06` or newer. 17- The `nightly` feature no longer requires `nightly-2024-09-06` or newer.
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 7141fe0f9..7c930b658 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.6.2" 3version = "0.6.3"
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"