From 7572550afedf43ea565cc7d91b09f84bedecdce4 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sun, 12 May 2024 11:06:39 -0600 Subject: [PATCH] update changenotes --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 091640f9..cbd5a05f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* **0.11.6:** + * `on_gba` feature (default: enabled) that signals if the crate is running on a GBA. + Limited portions of the crate *can* be used even when not on the GBA (such as in a build script). + * `track_caller` added for fixed point math operations * **0.11.5:** * Fixed the random number generator `next` method (https://github.com/rust-console/gba/issues/192). * Added optional support for the `critical-section` crate (https://github.com/rust-console/gba/pull/191) diff --git a/Cargo.toml b/Cargo.toml index 823f1012..d92be65e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Zlib OR Apache-2.0 OR MIT" [features] -default = ["track_caller"] +default = ["track_caller", "on_gba"] track_caller = [] on_gba = []