aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/CHANGELOG.md
diff options
context:
space:
mode:
authorOliver Rockstedt <[email protected]>2024-04-08 00:39:58 +0200
committerOliver Rockstedt <[email protected]>2024-04-08 00:40:42 +0200
commitfa05256f0563716ffa6e865b73679f4d545bcff9 (patch)
treeadd818437ac9764b2095686adab92e23bb854a1d /embassy-sync/CHANGELOG.md
parenta4eebdcc6895d6b530e38fbf652bc1a4df00ab0c (diff)
embassy-sync: Add len, is_empty and is_full functions to Channel.
Diffstat (limited to 'embassy-sync/CHANGELOG.md')
-rw-r--r--embassy-sync/CHANGELOG.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/embassy-sync/CHANGELOG.md b/embassy-sync/CHANGELOG.md
index e7db97ef7..3f6b39d8b 100644
--- a/embassy-sync/CHANGELOG.md
+++ b/embassy-sync/CHANGELOG.md
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 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). 6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 7
8## Unreleased
9
10- Add `len`, `is_empty` and `is_full` functions to `Channel`.
11
8## 0.5.0 - 2023-12-04 12## 0.5.0 - 2023-12-04
9 13
10- Add a PriorityChannel. 14- Add a PriorityChannel.
@@ -35,7 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35- Remove unnecessary uses of `atomic-polyfill` 39- Remove unnecessary uses of `atomic-polyfill`
36- Add `#[must_use]` to all futures. 40- Add `#[must_use]` to all futures.
37 41
38
39## 0.1.0 - 2022-08-26 42## 0.1.0 - 2022-08-26
40 43
41- First release 44- First release