aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-06 23:31:06 +0000
committerGitHub <[email protected]>2023-12-06 23:31:06 +0000
commitad2d9040d9f36d2523a22752e98f24c661643cb7 (patch)
treeb82f0701c4b92c3f338896eb1a1cf0a875775b82 /embassy-executor
parent7703f47c1ecac029f603033b7977d9a2becef48c (diff)
parent925f5cbc26d57f6a551593a5f973ad2b6edb9254 (diff)
Merge pull request #2254 from jessebraham/executor-040
embassy-executor 0.4
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/CHANGELOG.md5
-rw-r--r--embassy-executor/Cargo.toml2
2 files changed, 5 insertions, 2 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index c839981d6..5c6749230 100644
--- a/embassy-executor/CHANGELOG.md
+++ b/embassy-executor/CHANGELOG.md
@@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## Unreleased 8## Unreleased
9 9
10- Removed `arch-xtensa`. Use the executor provided by the HAL crate (`esp-hal`, `esp32s3-hal`, etc...) instead. 10## 0.4.0 - 2023-12-05
11
12- Removed `arch-xtensa`. Use the executor provided by the HAL crate (`esp-hal`, `esp32s3-hal`, etc...) instead.
13- Added an arena allocator for tasks, allowing using the `main` and `task` macros on Rust 1.75 stable. (it is only used if the `nightly` feature is not enabled. When `nightly` is enabled, `type_alias_impl_trait` is used to statically allocate tasks, as before).
11 14
12## 0.3.3 - 2023-11-15 15## 0.3.3 - 2023-11-15
13 16
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 74efe452e..a79bd89f5 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.3.3" 3version = "0.4.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"