Skip to content

Commit

Permalink
Bugfix: Fix #39
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Apr 1, 2024
1 parent 7d85c51 commit 3704392
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 3704392

Please sign in to comment.