aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-11 22:57:29 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-11 23:01:24 +0100
commit22197320ff5dcef6cdc692a4c556ea9eae270074 (patch)
treedd6614d87bd2751c1ca3a131efc10c2e8826de58 /embassy-time
parentf0606da9adc8032cc92c06c0661b385742459fc8 (diff)
bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.
Diffstat (limited to 'embassy-time')
-rw-r--r--embassy-time/CHANGELOG.md6
-rw-r--r--embassy-time/Cargo.toml4
2 files changed, 8 insertions, 2 deletions
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
index d8c0c7d08..df093949f 100644
--- a/embassy-time/CHANGELOG.md
+++ b/embassy-time/CHANGELOG.md
@@ -5,6 +5,12 @@ 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## 0.3.0 - 2024-01-11
9
10- Update `embedded-hal-async` to `1.0.0`
11- Update `embedded-hal v1` to `1.0.0`
12- Split the time driver to a separate `embassy-time-driver` crate.
13
8## 0.2.0 - 2023-12-04 14## 0.2.0 - 2023-12-04
9 15
10- Added tick rates in multiples of 10 kHz 16- Added tick rates in multiples of 10 kHz
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index f27de8ab4..6b1c7cc58 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.2.0" 3version = "0.3.0"
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"
@@ -422,4 +422,4 @@ wasm-timer = { version = "0.2.5", optional = true }
422[dev-dependencies] 422[dev-dependencies]
423serial_test = "0.9" 423serial_test = "0.9"
424critical-section = { version = "1.1", features = ["std"] } 424critical-section = { version = "1.1", features = ["std"] }
425embassy-executor = { version = "0.4.0", path = "../embassy-executor" } 425embassy-executor = { version = "0.5.0", path = "../embassy-executor" }