aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2024-12-18 15:42:24 +0100
committerDániel Buga <[email protected]>2024-12-22 20:27:15 +0100
commit9a238e6ad8aedf29b5f5af7308c7f5f50061242c (patch)
tree6eae6df23256a7da16704275e51929fd238c7119 /embassy-time
parent8b3cbf80a4d69bc61b300b0e8da9030d2a56f40b (diff)
Prepare new embassy-time-*driver, embassy-executor, embassy-time
Diffstat (limited to 'embassy-time')
-rw-r--r--embassy-time/CHANGELOG.md2
-rw-r--r--embassy-time/Cargo.toml8
2 files changed, 5 insertions, 5 deletions
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
index 0026fbd08..ec3219818 100644
--- a/embassy-time/CHANGELOG.md
+++ b/embassy-time/CHANGELOG.md
@@ -5,7 +5,7 @@ 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 8## 0.4.0 - 2024-12-18
9 9
10- embassy-time no longer provides an `embassy-time-queue-driver` implementation 10- embassy-time no longer provides an `embassy-time-queue-driver` implementation
11 11
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index eeac7dc29..23317c6d3 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.2" 3version = "0.4.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"
@@ -408,8 +408,8 @@ tick-hz-5_242_880_000 = ["embassy-time-driver/tick-hz-5_242_880_000"]
408#! </details> 408#! </details>
409 409
410[dependencies] 410[dependencies]
411embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver" } 411embassy-time-driver = { version = "0.2", path = "../embassy-time-driver" }
412embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true} 412embassy-time-queue-driver = { version = "0.2", path = "../embassy-time-queue-driver", optional = true}
413 413
414defmt = { version = "0.3", optional = true } 414defmt = { version = "0.3", optional = true }
415log = { version = "0.4.14", optional = true } 415log = { version = "0.4.14", optional = true }
@@ -432,4 +432,4 @@ wasm-timer = { version = "0.2.5", optional = true }
432[dev-dependencies] 432[dev-dependencies]
433serial_test = "0.9" 433serial_test = "0.9"
434critical-section = { version = "1.1", features = ["std"] } 434critical-section = { version = "1.1", features = ["std"] }
435embassy-executor = { version = "0.6.3", path = "../embassy-executor" } 435embassy-executor = { version = "0.7.0", path = "../embassy-executor" }