diff --git a/CHANGELOG.md b/CHANGELOG.md index 487a157b..10b93885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.31.0] - 30-Nov-2024 + +### Changed + +- Update to Bevy 0.15 ([#309](https://github.com/mvlabat/bevy_egui/pull/309) by @Vrixyz). + +### Fixed + +- Don't add `EguiContext` to every entity when the `render` feature is disabled ([#321](https://github.com/vladbat00/bevy_egui/pull/321) by @DGriffin91). + ## [0.30.1] - 10-Nov-2024 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 9bad705b..86704be8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "bevy_egui" -version = "0.30.1" -rust-version = "1.80.0" # needed for LazyLock https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html +version = "0.31.0" +# Needed for LazyLock https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html +rust-version = "1.80.0" authors = ["mvlabat "] description = "A plugin for Egui integration into Bevy" license = "MIT" diff --git a/README.md b/README.md index 76366ddf..0cae357c 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ Here's a minimal usage example: ```toml # Cargo.toml [dependencies] -bevy = "0.14" -bevy_egui = "0.30" +bevy = "0.15" +bevy_egui = "0.31" ``` ```rust @@ -87,6 +87,7 @@ cargo run --example ui | bevy | bevy_egui | |------|-----------| +| 0.15 | 0.31 | | 0.14 | 0.28-0.30 | | 0.13 | 0.25-0.27 | | 0.12 | 0.23-0.24 |