From 7aab92b22f60d9a8bbab773caa0b2230a62e79aa Mon Sep 17 00:00:00 2001 From: Ralf Fuest Date: Tue, 10 Sep 2024 16:15:31 +0200 Subject: [PATCH] Remove unused fixed_point feature --- CHANGELOG.md | 6 ++++++ Cargo.toml | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7b47a0..30841f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,14 @@ ## [Unreleased] - ReleaseDate +### Removed + +- **(breaking)** [#57](https://github.com/embedded-graphics/simulator/pull/57) Remove unused `fixed_point` feature. + ## [0.7.0] - 2024-09-10 +### Changed + - **(breaking)** [#55](https://github.com/embedded-graphics/simulator/pull/55) Bump the following crate dependencies: `image` to 0.25.1, `base64` to 0.22.1, `sdl2` to 0.37.0 ## [0.6.0] - 2023-11-26 diff --git a/Cargo.toml b/Cargo.toml index 8724811..a7dd91e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,5 +28,4 @@ ouroboros = { version = "0.18.0", optional = true } [features] default = ["with-sdl"] -fixed_point = ["embedded-graphics/fixed_point"] with-sdl = ["sdl2", "ouroboros"]