From 661eb7155f13f793432756eaf64c53a432a2ab49 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 28 Feb 2024 09:56:23 +0000 Subject: [PATCH] Add changelog entry for default implementations --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9547ff7..4170e01c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - An abstraction over hblank DMA to allow for cool effects like gradients and circular windows. See the dma_effect* examples. - Expermental and incomplete support for MIDI files with agb-tracker. - Fixnum now implements [`num::Num`](https://docs.rs/num/0.4/num/trait.Num.html) from the [`num`](https://crates.io/crates/num) crate. +- `Default` implementations for `RandomNumberGenerator` and `RawMutex`. ### Change - A few functions which previously accepted a `Vector` now accept an `impl Into>` instead.