diff --git a/Cargo.toml b/Cargo.toml index 338a0a7..966bb8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_sdl2_gl" -version = "0.27.2" +version = "0.28.0" authors = ["Arjun Nair "] edition = "2018" description = "Backend for Egui to use with sdl2-rs and open gl" @@ -15,7 +15,7 @@ include = ["**/*.rs", "Cargo.toml", "/shaders"] [dependencies] ahash = "~0.8" gl = "~0.14" -egui = "~0.27" +egui = "~0.28" sdl2 = { version = ">= 0.36, < 0.38" } memoffset = "0.9.0" @@ -41,4 +41,4 @@ sdl2_static-link = ["sdl2/static-link"] use_epi = ["epi"] [dev-dependencies] -egui_demo_lib = "~0.27" +egui_demo_lib = "~0.28" diff --git a/changelog.md b/changelog.md index b740df9..6a09299 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,9 @@ 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.28.0 +* Updated to egui v0.28. + # 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.