From 93e58fb4f6dfdca6a7f783cecd830e07ee76deae Mon Sep 17 00:00:00 2001 From: Arjun Nair Date: Mon, 16 Sep 2024 12:03:10 +0530 Subject: [PATCH] Updated to v0.27.2 --- Cargo.toml | 2 +- changelog.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eefbdf5..338a0a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_sdl2_gl" -version = "0.27.1" +version = "0.27.2" authors = ["Arjun Nair "] edition = "2018" description = "Backend for Egui to use with sdl2-rs and open gl" diff --git a/changelog.md b/changelog.md index fc34d17..b740df9 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,11 @@ NOTE: The major version number of this library matches that of the egui major version that this library currently supports. The minor version number may be different though. +# v0.27.2 +* Handle cursor not being available on some systems like an embedded device. Thanks [Sky Leite](https://github.com/SkyLeite) +* Some minor fixes for cargo clippy and fmt. +* Updated screenshot on github to match example code. + # v0.27.1 * Added support for SDL v0.37. Thanks [Cobrand](https://github.com/Cobrand) * Updated triangle example to a colored one. Because why not.