diff options
| author | Dániel Buga <[email protected]> | 2024-12-18 15:42:24 +0100 |
|---|---|---|
| committer | Dániel Buga <[email protected]> | 2024-12-22 20:27:15 +0100 |
| commit | 9a238e6ad8aedf29b5f5af7308c7f5f50061242c (patch) | |
| tree | 6eae6df23256a7da16704275e51929fd238c7119 /embassy-time | |
| parent | 8b3cbf80a4d69bc61b300b0e8da9030d2a56f40b (diff) | |
Prepare new embassy-time-*driver, embassy-executor, embassy-time
Diffstat (limited to 'embassy-time')
| -rw-r--r-- | embassy-time/CHANGELOG.md | 2 | ||||
| -rw-r--r-- | embassy-time/Cargo.toml | 8 |
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. | |||
| 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | 6 | and 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] |
| 2 | name = "embassy-time" | 2 | name = "embassy-time" |
| 3 | version = "0.3.2" | 3 | version = "0.4.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "Instant and Duration for embedded no-std systems, with async timer support" | 5 | description = "Instant and Duration for embedded no-std systems, with async timer support" |
| 6 | repository = "https://github.com/embassy-rs/embassy" | 6 | repository = "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] |
| 411 | embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver" } | 411 | embassy-time-driver = { version = "0.2", path = "../embassy-time-driver" } |
| 412 | embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true} | 412 | embassy-time-queue-driver = { version = "0.2", path = "../embassy-time-queue-driver", optional = true} |
| 413 | 413 | ||
| 414 | defmt = { version = "0.3", optional = true } | 414 | defmt = { version = "0.3", optional = true } |
| 415 | log = { version = "0.4.14", optional = true } | 415 | log = { version = "0.4.14", optional = true } |
| @@ -432,4 +432,4 @@ wasm-timer = { version = "0.2.5", optional = true } | |||
| 432 | [dev-dependencies] | 432 | [dev-dependencies] |
| 433 | serial_test = "0.9" | 433 | serial_test = "0.9" |
| 434 | critical-section = { version = "1.1", features = ["std"] } | 434 | critical-section = { version = "1.1", features = ["std"] } |
| 435 | embassy-executor = { version = "0.6.3", path = "../embassy-executor" } | 435 | embassy-executor = { version = "0.7.0", path = "../embassy-executor" } |
