mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-27 20:30:29 +00:00
Changelog
This commit is contained in:
parent
5a5495aac4
commit
6cc8709ecc
@ -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
|
||||||
|
|
||||||
|
14
embassy-time-driver/CHANGELOG.md
Normal file
14
embassy-time-driver/CHANGELOG.md
Normal 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
|
16
embassy-time-queue-driver/CHANGELOG.md
Normal file
16
embassy-time-queue-driver/CHANGELOG.md
Normal 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
|
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user