Changelog

This commit is contained in:
Dániel Buga 2024-12-08 20:05:37 +01:00
parent 5a5495aac4
commit 6cc8709ecc
No known key found for this signature in database
4 changed files with 38 additions and 2 deletions

View File

@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
- `raw::Executor` now has an `fn initialize` that must be called once before starting to poll it. - embassy-executor no longer provides an `embassy-time-queue-driver` implementation
- Added `TaskRef::executor` to obtain a reference to a task's executor
- integrated-timers are no longer processed when polling the executor.
- `raw::timer_queue::TimerQueue` is now public.
## 0.6.3 - 2024-11-12 ## 0.6.3 - 2024-11-12

View File

@ -0,0 +1,14 @@
# Changelog for embassy-time-queue-driver
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
- The `allocate_alarm`, `set_alarm_callback`, `set_alarm` functions have been removed.
## 0.1.0 - 2024-01-11
Initial release

View File

@ -0,0 +1,16 @@
# Changelog for embassy-time-queue-driver
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
- Added `integrated-timers` and `generic-queue-N` features
- Added `queue_generic` module which contains `Queue` (configured via the `generic-queue-N` features) and `ConstGenericQueue<SIZE>`.
- Added `GenericTimerQueue` and `GlobalTimerQueue` structs that can be used to implement timer queues.
## 0.1.0 - 2024-01-11
Initial release

View File

@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
- The `generic-queue` and related features have been removed (moved to embassy-time-queue-driver)
- embassy-time no longer provides an `embassy-time-queue-driver` implementation
## 0.3.2 - 2024-08-05 ## 0.3.2 - 2024-08-05
- Implement with_timeout()/with_deadline() method style call on Future - Implement with_timeout()/with_deadline() method style call on Future
- Add collapse_debuginfo to fmt.rs macros. - Add collapse_debuginfo to fmt.rs macros.
## 0.3.1 - 2024-01-11 ## 0.3.1 - 2024-01-11