aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-04-13 23:03:21 +0200
committerDario Nieuwenhuis <[email protected]>2023-04-13 23:40:49 +0200
commit577f060d249ba048b260309f5d065dfc84e0be65 (patch)
treedf3490e27cd3c4c7e53d8414a77c163fe0aa93ba /embassy-sync
parent5a03b2e9e802626127038cff5634795f576f1c69 (diff)
Release embassy-sync v0.2.0
Diffstat (limited to 'embassy-sync')
-rw-r--r--embassy-sync/CHANGELOG.md22
-rw-r--r--embassy-sync/Cargo.toml2
2 files changed, 23 insertions, 1 deletions
diff --git a/embassy-sync/CHANGELOG.md b/embassy-sync/CHANGELOG.md
new file mode 100644
index 000000000..a60f3f7c4
--- /dev/null
+++ b/embassy-sync/CHANGELOG.md
@@ -0,0 +1,22 @@
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-13
9
10- pubsub: Fix messages not getting popped when the last subscriber that needed them gets dropped.
11- pubsub: Move instead of clone messages when the last subscriber pops them.
12- pubsub: Pop messages which count is 0 after unsubscribe.
13- Update `embedded-io` from `0.3` to `0.4` (uses `async fn` in traits).
14- impl `Default` for `WakerRegistration`
15- impl `Default` for `Signal`
16- Remove unnecessary uses of `atomic-polyfill`
17- Add `#[must_use]` to all futures.
18
19
20## 0.1.0 - 2022-08-26
21
22- First release \ No newline at end of file
diff --git a/embassy-sync/Cargo.toml b/embassy-sync/Cargo.toml
index e4871e718..bc06b92cd 100644
--- a/embassy-sync/Cargo.toml
+++ b/embassy-sync/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-sync" 2name = "embassy-sync"
3version = "0.1.0" 3version = "0.2.0"
4edition = "2021" 4edition = "2021"
5description = "no-std, no-alloc synchronization primitives with async support" 5description = "no-std, no-alloc synchronization primitives with async support"
6repository = "https://github.com/embassy-rs/embassy" 6repository = "https://github.com/embassy-rs/embassy"