aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-08-26 16:04:00 +0200
committerUlf Lilleengen <[email protected]>2025-08-26 16:05:09 +0200
commit83f2557eacd657070a84a9baf2da6e3aff03b2b7 (patch)
tree13ce7dc5787f05b4f5e087e891738ac5120112e3 /embassy-time
parentb6a81d8bedeafa5166d0668c387ed65062777193 (diff)
chore: prepare embassy crate releases
Diffstat (limited to 'embassy-time')
-rw-r--r--embassy-time/CHANGELOG.md2
-rw-r--r--embassy-time/Cargo.toml9
2 files changed, 6 insertions, 5 deletions
diff --git a/embassy-time/CHANGELOG.md b/embassy-time/CHANGELOG.md
index 2e94e0112..572571215 100644
--- a/embassy-time/CHANGELOG.md
+++ b/embassy-time/CHANGELOG.md
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11## 0.5.0 - 2025-08-26
12
11- Allow inlining on time driver boundary 13- Allow inlining on time driver boundary
12- Add `saturating_add` and `saturating_sub` to `Instant` 14- Add `saturating_add` and `saturating_sub` to `Instant`
13- Add `Instant::try_from_*` constructor functions 15- Add `Instant::try_from_*` constructor functions
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index eff8e2975..6ebf0a468 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.4.0" 3version = "0.5.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"
@@ -17,7 +17,6 @@ categories = [
17[package.metadata.embassy] 17[package.metadata.embassy]
18build = [ 18build = [
19 {target = "thumbv6m-none-eabi", features = ["defmt", "defmt-timestamp-uptime", "mock-driver"]}, 19 {target = "thumbv6m-none-eabi", features = ["defmt", "defmt-timestamp-uptime", "mock-driver"]},
20 {features = ["defmt", "std"]},
21] 20]
22 21
23[package.metadata.embassy_docs] 22[package.metadata.embassy_docs]
@@ -423,8 +422,8 @@ tick-hz-5_242_880_000 = ["embassy-time-driver/tick-hz-5_242_880_000"]
423#! </details> 422#! </details>
424 423
425[dependencies] 424[dependencies]
426embassy-time-driver = { version = "0.2", path = "../embassy-time-driver" } 425embassy-time-driver = { version = "0.2.1", path = "../embassy-time-driver" }
427embassy-time-queue-utils = { version = "0.2", path = "../embassy-time-queue-utils", optional = true} 426embassy-time-queue-utils = { version = "0.3.0", path = "../embassy-time-queue-utils", optional = true}
428 427
429defmt = { version = "1.0.1", optional = true } 428defmt = { version = "1.0.1", optional = true }
430log = { version = "0.4.14", optional = true } 429log = { version = "0.4.14", optional = true }
@@ -447,4 +446,4 @@ wasm-timer = { version = "0.2.5", optional = true }
447[dev-dependencies] 446[dev-dependencies]
448serial_test = "0.9" 447serial_test = "0.9"
449critical-section = { version = "1.1", features = ["std"] } 448critical-section = { version = "1.1", features = ["std"] }
450embassy-executor = { version = "0.8.0", path = "../embassy-executor" } 449embassy-executor = { version = "0.9.0", path = "../embassy-executor" }