diff --git a/CHANGELOG.md b/CHANGELOG.md index a317d2ca1..19981feca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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.27.0] - 18-Apr-2024 + +### Added + +- Fallible variants of primary window getters for `EguiContexts`. + +### Changed + +- Update Egui to 0.27 ([#271](https://github.com/mvlabat/bevy_egui/pull/271) by @jakobhellermann). +- Improve compilation errors when missing `web_sys_unstable_apis` ([#270](https://github.com/mvlabat/bevy_egui/pull/270) by @Vrixyz). + +### Fixed + +- Rework reading window ids for events (fixes edge-cases with ignoring events, [#273](https://github.com/mvlabat/bevy_egui/pull/273)). + +### Removed + +- Unused `RenderGraphConfig`. + ## [0.26.0] - 18-Mar-2024 ### Added diff --git a/Cargo.toml b/Cargo.toml index 6b60d3f0d..452bcf38a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_egui" -version = "0.26.0" +version = "0.27.0" authors = ["mvlabat "] description = "A plugin for Egui integration into Bevy" license = "MIT" diff --git a/README.md b/README.md index 31f25bba8..998bbe5ed 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Here's a minimal usage example: # Cargo.toml [dependencies] bevy = "0.13" -bevy_egui = "0.26" +bevy_egui = "0.27" ``` ```rust @@ -85,7 +85,7 @@ cargo run --example ui | bevy | bevy_egui | |------|-----------| -| 0.13 | 0.25-0.26 | +| 0.13 | 0.25-0.27 | | 0.12 | 0.23-0.24 | | 0.11 | 0.21-0.22 | | 0.10 | 0.20 |