From 6e26d0ec2062afa26e4c488ce819f92f634024ca Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Wed, 29 May 2024 21:01:51 +0200 Subject: [PATCH] Cleanup CHANGELOGs for monotonics/time v2 release --- rtic-monotonics/CHANGELOG.md | 2 +- rtic-time/CHANGELOG.md | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/rtic-monotonics/CHANGELOG.md b/rtic-monotonics/CHANGELOG.md index 14d239d4e4fa..a379c70d8649 100644 --- a/rtic-monotonics/CHANGELOG.md +++ b/rtic-monotonics/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). For each category, *Added*, *Changed*, *Fixed* add new entries at the top! -## Unreleased - v2.0.0 +## v2.0.0 - 2024-05-29 ### Changed diff --git a/rtic-time/CHANGELOG.md b/rtic-time/CHANGELOG.md index 197c4263288b..4c41f84ff2bb 100644 --- a/rtic-time/CHANGELOG.md +++ b/rtic-time/CHANGELOG.md @@ -5,16 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). For each category, *Added*, *Changed*, *Fixed* add new entries at the top! -## Unreleased - v2.0.0 - +## v2.0.0 - 2024-05-29 ### Added ### Changed + - Full rewrite of the `Monotonic` API. - Now split into multiple traits: - - `Monotonic` - A user-facing trait that defines what the functionality of a monotonic is. - - `TimerQueueBackend` - The set of functionality a backend must provide in order to be used with the `TimerQueue`. + - `Monotonic` - A user-facing trait that defines what the functionality of a monotonic is. - `TimerQueueBackend` - The set of functionality a backend must provide in order to be used with the `TimerQueue`. - `TimerQueue` is now purely based on ticks and has no concept of real time. - The `TimerQueueBasedMonotonic` trait implements a `Monotonic` based on a `TimerQueueBackend`, translating ticks into `Instant` and `Duration`.