diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-04-13 23:03:21 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-04-13 23:40:49 +0200 |
| commit | 577f060d249ba048b260309f5d065dfc84e0be65 (patch) | |
| tree | df3490e27cd3c4c7e53d8414a77c163fe0aa93ba /embassy-sync | |
| parent | 5a03b2e9e802626127038cff5634795f576f1c69 (diff) | |
Release embassy-sync v0.2.0
Diffstat (limited to 'embassy-sync')
| -rw-r--r-- | embassy-sync/CHANGELOG.md | 22 | ||||
| -rw-r--r-- | embassy-sync/Cargo.toml | 2 |
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 | |||
| 3 | All notable changes to this project will be documented in this file. | ||
| 4 | |||
| 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
| 6 | and 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] |
| 2 | name = "embassy-sync" | 2 | name = "embassy-sync" |
| 3 | version = "0.1.0" | 3 | version = "0.2.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "no-std, no-alloc synchronization primitives with async support" | 5 | description = "no-std, no-alloc synchronization primitives with async support" |
| 6 | repository = "https://github.com/embassy-rs/embassy" | 6 | repository = "https://github.com/embassy-rs/embassy" |
