fix rustfmt and add changelog

This commit is contained in:
Rogan Morrow 2025-09-22 13:43:57 +10:00
parent a0a204f586
commit 57f1517f70
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## Unreleased - ReleaseDate
- Add as_nanos and from_nanos where missing
## 0.5.0 - 2025-08-26
- Allow inlining on time driver boundary

View File

@ -1,7 +1,7 @@
use core::fmt;
use core::ops::{Add, AddAssign, Sub, SubAssign};
use super::{Duration, GCD_1K, GCD_1M, GCD_1G, TICK_HZ};
use super::{Duration, GCD_1G, GCD_1K, GCD_1M, TICK_HZ};
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]