diff --git a/CHANGELOG.md b/CHANGELOG.md index 68b1f7bc0..3eba50c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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.22.0] - 7-Oct-2023 + +### Changed + +- Update Egui to 0.23 ([#217](https://github.com/mvlabat/bevy_egui/pull/217) by @zicklag). +- Refactor components and resources extraction ([#210](https://github.com/mvlabat/bevy_egui/pull/210), [#211](https://github.com/mvlabat/bevy_egui/pull/211) by @TheButlah). + +### Added + +- Add `#[derive(Reflect)]` ([#195](https://github.com/mvlabat/bevy_egui/pull/195) by @SludgePhD). + ## [0.21.0] - 10-Jul-2023 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 2c12ec0b1..ba7e2584b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_egui" -version = "0.21.0" +version = "0.22.0" authors = ["mvlabat "] description = "A plugin for Egui integration into Bevy" license = "MIT" diff --git a/README.md b/README.md index 568187fc6..e9a94616a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Downloads](https://img.shields.io/crates/d/bevy_egui.svg)](https://crates.io/crates/bevy_egui) [![Rust](https://github.com/mvlabat/bevy_egui/workflows/CI/badge.svg)](https://github.com/mvlabat/bevy_egui/actions) -This crate provides a [Egui](https://github.com/emilk/egui) integration for the [Bevy](https://github.com/bevyengine/bevy) game engine. +This crate provides an [Egui](https://github.com/emilk/egui) integration for the [Bevy](https://github.com/bevyengine/bevy) game engine. **Trying out:** @@ -40,7 +40,7 @@ Here's a minimal usage example: # Cargo.toml [dependencies] bevy = "0.11" -bevy_egui = "0.21" +bevy_egui = "0.22" ``` ```rust @@ -81,7 +81,7 @@ cargo run --example ui | bevy | bevy_egui | |------|-----------| -| 0.11 | 0.21 | +| 0.11 | 0.21-0.22 | | 0.10 | 0.20 | | 0.9 | 0.17-0.19 | | 0.8 | 0.15-0.16 | diff --git a/src/lib.rs b/src/lib.rs index 7a373c473..6053ba02a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ #![warn(missing_docs)] -//! This crate provides a [Egui](https://github.com/emilk/egui) integration for the [Bevy](https://github.com/bevyengine/bevy) game engine. +//! This crate provides an [Egui](https://github.com/emilk/egui) integration for the [Bevy](https://github.com/bevyengine/bevy) game engine. //! //! **Trying out:** //!