aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-time')
-rw-r--r--embassy-time/CHANGELOG.md9
-rw-r--r--embassy-time/Cargo.toml2
2 files changed, 10 insertions, 1 deletions
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
index df093949f..75e17fd63 100644
--- a/embassy-time/CHANGELOG.md
+++ b/embassy-time/CHANGELOG.md
@@ -5,6 +5,15 @@ 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## 0.4.0 - 2024-01-11
11
12- Add with\_deadline convenience function and example
13- Implement Clone for Delay
14- Make Ticker::next Send+Sync
15- Add timestamp features
16
8## 0.3.0 - 2024-01-11 17## 0.3.0 - 2024-01-11
9 18
10- Update `embedded-hal-async` to `1.0.0` 19- Update `embedded-hal-async` to `1.0.0`
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index ce3f3d8c2..5d5bd8b23 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.3.0" 3version = "0.3.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"