aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2024-12-08 20:05:37 +0100
committerDániel Buga <[email protected]>2024-12-10 21:31:42 +0100
commit6cc8709ecc9e8f71a13ec62b42be52bc8adf2c7b (patch)
treed4c1c14c873cb59d084e9a5d49702f37a858ba4d
parent5a5495aac43d75610735f2ca80fb6c8e8f31ed71 (diff)
Changelog
-rw-r--r--embassy-executor/CHANGELOG.md5
-rw-r--r--embassy-time-driver/CHANGELOG.md14
-rw-r--r--embassy-time-queue-driver/CHANGELOG.md16
-rw-r--r--embassy-time/CHANGELOG.md5
4 files changed, 38 insertions, 2 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
index 00b1bef28..1aef57a70 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- `raw::Executor` now has an `fn initialize` that must be called once before starting to poll it. 10- embassy-executor no longer provides an `embassy-time-queue-driver` implementation
11- Added `TaskRef::executor` to obtain a reference to a task's executor
12- integrated-timers are no longer processed when polling the executor.
13- `raw::timer_queue::TimerQueue` is now public.
11 14
12## 0.6.3 - 2024-11-12 15## 0.6.3 - 2024-11-12
13 16
diff --git a/embassy-time-driver/CHANGELOG.md b/embassy-time-driver/CHANGELOG.md
new file mode 100644
index 000000000..ebc37b6f4
--- /dev/null
+++ b/embassy-time-driver/CHANGELOG.md
@@ -0,0 +1,14 @@
1# Changelog for embassy-time-queue-driver
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10- The `allocate_alarm`, `set_alarm_callback`, `set_alarm` functions have been removed.
11
12## 0.1.0 - 2024-01-11
13
14Initial release
diff --git a/embassy-time-queue-driver/CHANGELOG.md b/embassy-time-queue-driver/CHANGELOG.md
new file mode 100644
index 000000000..3b2aa8695
--- /dev/null
+++ b/embassy-time-queue-driver/CHANGELOG.md
@@ -0,0 +1,16 @@
1# Changelog for embassy-time-queue-driver
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10- Added `integrated-timers` and `generic-queue-N` features
11- Added `queue_generic` module which contains `Queue` (configured via the `generic-queue-N` features) and `ConstGenericQueue<SIZE>`.
12- Added `GenericTimerQueue` and `GlobalTimerQueue` structs that can be used to implement timer queues.
13
14## 0.1.0 - 2024-01-11
15
16Initial release
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
index 3b4d93387..a6acb1ad6 100644
--- a/embassy-time/CHANGELOG.md
+++ b/embassy-time/CHANGELOG.md
@@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## Unreleased 8## Unreleased
9 9
10- The `generic-queue` and related features have been removed (moved to embassy-time-queue-driver)
11- embassy-time no longer provides an `embassy-time-queue-driver` implementation
12
10## 0.3.2 - 2024-08-05 13## 0.3.2 - 2024-08-05
11 14
12- Implement with_timeout()/with_deadline() method style call on Future 15- Implement with_timeout()/with_deadline() method style call on Future
13- Add collapse_debuginfo to fmt.rs macros. 16- Add collapse_debuginfo to fmt.rs macros.
14 17
15## 0.3.1 - 2024-01-11 18## 0.3.1 - 2024-01-11
16 19