diff options
Diffstat (limited to 'embassy-time')
| -rw-r--r-- | embassy-time/CHANGELOG.md | 6 | ||||
| -rw-r--r-- | embassy-time/Cargo.toml | 4 |
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. | |||
| 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 | ## 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] |
| 2 | name = "embassy-time" | 2 | name = "embassy-time" |
| 3 | version = "0.2.0" | 3 | version = "0.3.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" |
| @@ -422,4 +422,4 @@ wasm-timer = { version = "0.2.5", optional = true } | |||
| 422 | [dev-dependencies] | 422 | [dev-dependencies] |
| 423 | serial_test = "0.9" | 423 | serial_test = "0.9" |
| 424 | critical-section = { version = "1.1", features = ["std"] } | 424 | critical-section = { version = "1.1", features = ["std"] } |
| 425 | embassy-executor = { version = "0.4.0", path = "../embassy-executor" } | 425 | embassy-executor = { version = "0.5.0", path = "../embassy-executor" } |
