aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/CHANGELOG.md
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2023-04-27 20:19:07 +0200
committerUlf Lilleengen <[email protected]>2023-04-27 20:19:07 +0200
commit28a34548464d3d8646fc8dbe65d10e52c02cc56c (patch)
treec2a9b2aa1a68ffc9deec9557bb8f90e3c545bd33 /embassy-executor/CHANGELOG.md
parent42a8f1671de994c702a20ecf44a1b4daa46e23e3 (diff)
add changelog
Diffstat (limited to 'embassy-executor/CHANGELOG.md')
-rw-r--r--embassy-executor/CHANGELOG.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/embassy-executor/CHANGELOG.md b/embassy-executor/CHANGELOG.md
new file mode 100644
index 000000000..4fd3dccf7
--- /dev/null
+++ b/embassy-executor/CHANGELOG.md
@@ -0,0 +1,23 @@
1# Changelog
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## 0.2.0 - 2023-04-27
9
10- Replace unnecessary atomics in runqueue
11- add Pender, rework Cargo features.
12- add support for turbo-wakers.
13- Allow TaskStorage to auto-implement `Sync`
14- Use AtomicPtr for signal_ctx, removes 1 unsafe.
15- Replace unsound critical sections with atomics
16
17## 0.1.1 - 2022-11-23
18
19- Fix features for documentation
20
21## 0.1.0 - 2022-11-23
22
23- First release