aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-04-13 23:57:01 +0200
committerDario Nieuwenhuis <[email protected]>2023-04-13 23:57:20 +0200
commita7629299f47a7a54d4033152733d2774ec918d7c (patch)
treefaa56299d0ca52fc7de553c998a3a41bb7559a35
parente7ff759f1ca78a5b53c1ea95c24a6317227dc8b0 (diff)
Release embassy-time v0.1.1
-rw-r--r--embassy-time/CHANGELOG.md24
-rw-r--r--embassy-time/Cargo.toml2
2 files changed, 25 insertions, 1 deletions
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
new file mode 100644
index 000000000..f4a7860e6
--- /dev/null
+++ b/embassy-time/CHANGELOG.md
@@ -0,0 +1,24 @@
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.1.1 - 2023-04-13
9
10- Update `embedded-hal-async` to `0.2.0-alpha.1` (uses `async fn` in traits).
11- Update `embedded-hal v1` to `1.0.0-alpha.10`. (Note: v0.2 support is kept unchanged).
12- Remove dep on `embassy-sync`.
13- Fix reentrancy issues in the `std` time driver (#1177)
14- Add `Duration::from_hz()`.
15- impl `From` conversions to/from `core::time::Duration`.
16- Add `#[must_use]` to all futures.
17- Add inherent `async fn tick()` to `Ticker`, so you can use it directly without the `Stream` trait.
18- Add more tick rates.
19- impl `Default` for `Signal`
20- Remove unnecessary uses of `atomic-polyfill`
21
22## 0.1.0 - 2022-08-26
23
24- First release \ No newline at end of file
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index a8a7e9337..c4edbd38a 100644
--- a/embassy-time/Cargo.toml
+++ b/embassy-time/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-time" 2name = "embassy-time"
3version = "0.1.0" 3version = "0.1.1"
4edition = "2021" 4edition = "2021"
5description = "Instant and Duration for embedded no-std systems, with async timer support" 5description = "Instant and Duration for embedded no-std systems, with async timer support"
6repository = "https://github.com/embassy-rs/embassy" 6repository = "https://github.com/embassy-rs/embassy"