rtic-time: add links to CHANGELOG.md

This commit is contained in:
datdenkikniet 2025-09-17 21:20:46 +02:00
parent 336c1a0639
commit 9cb042e11d

View file

@ -7,13 +7,13 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## Unreleased
## v2.0.1 - 2025-06-22
## [v](https://github.com/rtic-rs/rtic/commit/306aa47170fd59369b7a184924e287dc3706d64d)2.0.1 - 2025-06-22
### Changed
- Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage.
## v2.0.0 - 2024-05-29
## [v2.0.0](https://github.com/rtic-rs/rtic/commit/8c23e178f3838bcdd13662a2ffefd39ec144e869) - 2024-05-29
### Added
@ -30,13 +30,13 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
- Docs: Rename `DelayUs` to `DelayNs` in docs.
## v1.3.0 - 2024-01-10
## [v1.3.0](https://github.com/rtic-rs/rtic/commit/f69ecb05a95fd7c2906d060c1548291052dba6bd) - 2024-01-10
### Changed
- Using `embedded-hal` 1.0.
## v1.2.0 - 2023-12-06
## [v1.2.0](https://github.com/rtic-rs/rtic/commit/f377471e440d8be0b2f9e9c8877ed015f62dc19e) - 2023-12-06
### Changed
@ -48,7 +48,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
- Fix race condition in `half_period_counter::calculate_now`.
This sadly required a minor API change.
## v1.1.0 - 2023-12-04
## [v1.1.0](https://github.com/rtic-rs/rtic/commit/c227a71d243db6d539f3c64e3b4bb1b3ab282693) - 2023-12-04
### Added
@ -62,4 +62,4 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
- **Soundness fix:** `TimerQueue` did not wait long enough in `Duration` based delays. Fixing this sadly required adding a `const TICK_PERIOD` to the `Monotonic` trait, which requires updating all existing implementations.
- If the queue was non-empty and a new instant was added that was earlier than `head`, then the queue would no pend the monotonic handler. This would cause the new `head` to be dequeued at the wrong time.
## v1.0.0 - 2023-05-31
## [v1.0.0](https://github.com/rtic-rs/rtic/commit/c3884e212c36d2a9cf260b1d9ae37c92b91ea73d) - 2023-05-31