aboutsummaryrefslogtreecommitdiff
path: root/embassy-time-driver
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-11 23:51:47 +0100
committerGitHub <[email protected]>2024-01-11 23:51:47 +0100
commitd1a62733cd459d3c7778aa0707f58e7cfa75a94a (patch)
tree3047442f625ae2384ed26fc3c5373ee2bdee8a4d /embassy-time-driver
parent0d62e9c96ca14d9d9596f72d090e41855050e83c (diff)
parent9f6517e408f3a4b0a3fb00387a99deade55d6528 (diff)
Merge pull request #2439 from embassy-rs/release-misc-stuff
More misc cleanups for release.
Diffstat (limited to 'embassy-time-driver')
-rw-r--r--embassy-time-driver/CHANGELOG.md51
-rw-r--r--embassy-time-driver/Cargo.toml2
2 files changed, 1 insertions, 52 deletions
diff --git a/embassy-time-driver/CHANGELOG.md b/embassy-time-driver/CHANGELOG.md
deleted file mode 100644
index d8c0c7d08..000000000
--- a/embassy-time-driver/CHANGELOG.md
+++ /dev/null
@@ -1,51 +0,0 @@
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
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).
7
8## 0.2.0 - 2023-12-04
9
10- Added tick rates in multiples of 10 kHz
11- Remove nightly and unstable-traits features in preparation for 1.75.
12- Update heapless to 0.8.
13
14## 0.1.5 - 2023-10-16
15
16- Added `links` key to Cargo.toml, to prevent multiple copies of this crate in the same binary.
17 Needed because different copies might get different tick rates, causing
18 wrong delays if the time driver is using one copy and user code is using another.
19 This is especially common when mixing crates from crates.io and git.
20
21## 0.1.4 - 2023-10-12
22
23- Added more tick rates
24
25## 0.1.3 - 2023-08-28
26
27- Update `embedded-hal-async` to `1.0.0-rc.2`
28- Update `embedded-hal v1` to `1.0.0-rc.2`
29
30## 0.1.2 - 2023-07-05
31
32- Update `embedded-hal-async` to `0.2.0-alpha.2`.
33- Update `embedded-hal v1` to `1.0.0-alpha.11`. (Note: v0.2 support is kept unchanged).
34
35## 0.1.1 - 2023-04-13
36
37- Update `embedded-hal-async` to `0.2.0-alpha.1` (uses `async fn` in traits).
38- Update `embedded-hal v1` to `1.0.0-alpha.10`. (Note: v0.2 support is kept unchanged).
39- Remove dep on `embassy-sync`.
40- Fix reentrancy issues in the `std` time driver (#1177)
41- Add `Duration::from_hz()`.
42- impl `From` conversions to/from `core::time::Duration`.
43- Add `#[must_use]` to all futures.
44- Add inherent `async fn tick()` to `Ticker`, so you can use it directly without the `Stream` trait.
45- Add more tick rates.
46- impl `Default` for `Signal`
47- Remove unnecessary uses of `atomic-polyfill`
48
49## 0.1.0 - 2022-08-26
50
51- First release
diff --git a/embassy-time-driver/Cargo.toml b/embassy-time-driver/Cargo.toml
index 2ed250d4d..c6c23f698 100644
--- a/embassy-time-driver/Cargo.toml
+++ b/embassy-time-driver/Cargo.toml
@@ -388,4 +388,4 @@ wasm-timer = { version = "0.2.5", optional = true }
388[dev-dependencies] 388[dev-dependencies]
389serial_test = "0.9" 389serial_test = "0.9"
390critical-section = { version = "1.1", features = ["std"] } 390critical-section = { version = "1.1", features = ["std"] }
391embassy-executor = { version = "0.4.0", path = "../embassy-executor" } 391embassy-executor = { version = "0.5.0", path = "../embassy-executor" }