From 35a4943cd00957914975daae8539787c324aa139 Mon Sep 17 00:00:00 2001 From: mvlabat Date: Thu, 18 Apr 2024 01:19:08 +0300 Subject: [PATCH] Bump to 0.27 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a317d2c..19981fe 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 6b60d3f..452bcf3 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 31f25bb..998bbe5 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 |