From 6eb02a2c8819c489fd2a509e02f25a617c042ed8 Mon Sep 17 00:00:00 2001 From: mvlabat Date: Sat, 16 Apr 2022 12:12:25 +0300 Subject: [PATCH] Bump to 0.13.0 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- README.md | 5 +++-- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e02cdae0..767743429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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.13.0] - 16-Apr-2022 + +### Added + +- Upgrade Bevy to 0.7 ([#79](https://github.com/mvlabat/bevy_egui/pull/79) by @aevyrie and @forbjok). + +### Changed + +- Return egui::TextureId on removal ([#81](https://github.com/mvlabat/bevy_egui/pull/81) by @Shatur). +- Add `must_use` attributes to methods ([#82](https://github.com/mvlabat/bevy_egui/pull/82)). + +### Fixed + +- Remove unnecessary image clone allocation ([#84](https://github.com/mvlabat/bevy_egui/pull/84) by @frewsxcv). +- Avoid allocations by utilizing `HashMap::iter_mut` ([#83](https://github.com/mvlabat/bevy_egui/pull/83) by @frewsxcv). +- Remove unnecessary swap texture clone ([#85](https://github.com/mvlabat/bevy_egui/pull/85) by @frewsxcv). + ## [0.12.1] - 13-Mar-2022 ### Added diff --git a/Cargo.toml b/Cargo.toml index 5a72ff48c..65b9f9b84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_egui" -version = "0.12.1" +version = "0.13.0" authors = ["mvlabat "] description = "A plugin for Egui integration into Bevy" license = "MIT" diff --git a/README.md b/README.md index 6456351fe..cbfb8040a 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ Here's a minimal usage example: ```toml # Cargo.toml [dependencies] -bevy = "0.6" -bevy_egui = "0.12" +bevy = "0.7" +bevy_egui = "0.13" ``` ```rust @@ -80,6 +80,7 @@ cargo run --example ui | bevy | bevy_egui | |------|-----------| +| 0.7 | 0.13 | | 0.6 | 0.10-0.12 | | 0.5 | 0.4-0.9 | | 0.4 | 0.1-0.3 |