diff --git a/CHANGELOG.md b/CHANGELOG.md index ab0407f61..e5241c204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## 0.20.1 - 2024-04-01 +### Fixed +- Enable bevy_egui's `render` feature, so that users won't need to load it + explicitly and can use the one reexported from Yoleck (fixes + https://github.com/idanarye/bevy-yoleck/issues/39) + ## 0.20.0 - 2024-03-19 ### Changed - Update bevy_egui version to 0.26. diff --git a/Cargo.toml b/Cargo.toml index 01d806029..da63ccb26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["macros"] [package] name = "bevy-yoleck" description = "Your Own Level Editor Creation Kit" -version = "0.20.0" +version = "0.20.1" edition = "2021" authors = ["IdanArye "] license = "MIT OR Apache-2.0" @@ -23,7 +23,7 @@ exclude = [ bevy-yoleck-macros = { version = "0.9.1", path = "macros" } anyhow = "^1" bevy = { version = "^0.13", default-features = false } -bevy_egui = { version = "^0.26", default-features = false, features = ["default_fonts"] } +bevy_egui = { version = "^0.26", default-features = false, features = ["default_fonts", "render"] } serde = "^1" serde_json = "^1" thiserror = "^1" @@ -43,7 +43,6 @@ vpeol_3d = [ [dev-dependencies] bevy = { version = "^0.13", default-features = false, features = ["bevy_sprite", "x11"] } -bevy_egui = { version = "^0.26", default-features = false, features = ["default_fonts", "render"] } [[example]] name = "example2d"