From 6705757bc29f7194e58129276100a4d52b93aadc Mon Sep 17 00:00:00 2001 From: mvlabat Date: Sat, 6 Jul 2024 00:43:49 +0300 Subject: [PATCH] Bump to 0.28.0 --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- README.md | 9 +++++---- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e7e5d38..d34663f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,20 @@ 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.28.0] - 6-Jul-2024 + +### Changed + +- Update Bevy to 0.14 ([#284](https://github.com/mvlabat/bevy_egui/pull/284) by @Friz64). +- Update Egui to 0.28 ([#290](https://github.com/mvlabat/bevy_egui/pull/290) by @Swoorup). +- Update webbrowser to 1.0.1 + ## [0.27.1] - 2-Jun-2024 ### Changed - Request Redraw only if really needed ([#278](https://github.com/mvlabat/bevy_egui/pull/278) by @Maximetinu). -- Fixed light in the `render_to_image_wideget` example ([#282](https://github.com/mvlabat/bevy_egui/pull/282) by @rlidwka). +- Fix light in the `render_to_image_wideget` example ([#282](https://github.com/mvlabat/bevy_egui/pull/282) by @rlidwka). ## [0.27.0] - 18-Apr-2024 diff --git a/Cargo.toml b/Cargo.toml index 3a73cf243..772904722 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_egui" -version = "0.27.1" +version = "0.28.0" authors = ["mvlabat "] description = "A plugin for Egui integration into Bevy" license = "MIT" diff --git a/README.md b/README.md index 998bbe5ed..0812550a9 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ An example WASM project is live at [mvlabat.github.io/bevy_egui_web_showcase](ht **Features:** - Desktop and web platforms support -- Clipboard (web support is limited to the same window, see [rust-windowing/winit#1829](https://github.com/rust-windowing/winit/issues/1829)) +- Clipboard - Opening URLs - Multiple windows support (see [./examples/two_windows.rs](https://github.com/mvlabat/bevy_egui/blob/v0.20.1/examples/two_windows.rs)) -`bevy_egui` can be compiled with using only `bevy` and `egui` as dependencies: `manage_clipboard` and `open_url` features, +`bevy_egui` can be compiled with using only `bevy`, `egui` and `bytemuck` as dependencies: `manage_clipboard` and `open_url` features, that require additional crates, can be disabled. ![bevy_egui](bevy_egui.png) @@ -43,8 +43,8 @@ Here's a minimal usage example: ```toml # Cargo.toml [dependencies] -bevy = "0.13" -bevy_egui = "0.27" +bevy = "0.14" +bevy_egui = "0.28" ``` ```rust @@ -85,6 +85,7 @@ cargo run --example ui | bevy | bevy_egui | |------|-----------| +| 0.14 | 0.28 | | 0.13 | 0.25-0.27 | | 0.12 | 0.23-0.24 | | 0.11 | 0.21-0.22 |