Skip to content

Commit 6705757

Browse files
committed
Bump to 0.28.0
1 parent 1e25ab1 commit 6705757

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.28.0] - 6-Jul-2024
9+
10+
### Changed
11+
12+
- Update Bevy to 0.14 ([#284](https://github.com/mvlabat/bevy_egui/pull/284) by @Friz64).
13+
- Update Egui to 0.28 ([#290](https://github.com/mvlabat/bevy_egui/pull/290) by @Swoorup).
14+
- Update webbrowser to 1.0.1
15+
816
## [0.27.1] - 2-Jun-2024
917

1018
### Changed
1119

1220
- Request Redraw only if really needed ([#278](https://github.com/mvlabat/bevy_egui/pull/278) by @Maximetinu).
13-
- Fixed light in the `render_to_image_wideget` example ([#282](https://github.com/mvlabat/bevy_egui/pull/282) by @rlidwka).
21+
- Fix light in the `render_to_image_wideget` example ([#282](https://github.com/mvlabat/bevy_egui/pull/282) by @rlidwka).
1422

1523
## [0.27.0] - 18-Apr-2024
1624

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_egui"
3-
version = "0.27.1"
3+
version = "0.28.0"
44
authors = ["mvlabat <[email protected]>"]
55
description = "A plugin for Egui integration into Bevy"
66
license = "MIT"

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ An example WASM project is live at [mvlabat.github.io/bevy_egui_web_showcase](ht
2020

2121
**Features:**
2222
- Desktop and web platforms support
23-
- Clipboard (web support is limited to the same window, see [rust-windowing/winit#1829](https://github.com/rust-windowing/winit/issues/1829))
23+
- Clipboard
2424
- Opening URLs
2525
- Multiple windows support (see [./examples/two_windows.rs](https://github.com/mvlabat/bevy_egui/blob/v0.20.1/examples/two_windows.rs))
2626

27-
`bevy_egui` can be compiled with using only `bevy` and `egui` as dependencies: `manage_clipboard` and `open_url` features,
27+
`bevy_egui` can be compiled with using only `bevy`, `egui` and `bytemuck` as dependencies: `manage_clipboard` and `open_url` features,
2828
that require additional crates, can be disabled.
2929

3030
![bevy_egui](bevy_egui.png)
@@ -43,8 +43,8 @@ Here's a minimal usage example:
4343
```toml
4444
# Cargo.toml
4545
[dependencies]
46-
bevy = "0.13"
47-
bevy_egui = "0.27"
46+
bevy = "0.14"
47+
bevy_egui = "0.28"
4848
```
4949

5050
```rust
@@ -85,6 +85,7 @@ cargo run --example ui
8585

8686
| bevy | bevy_egui |
8787
|------|-----------|
88+
| 0.14 | 0.28 |
8889
| 0.13 | 0.25-0.27 |
8990
| 0.12 | 0.23-0.24 |
9091
| 0.11 | 0.21-0.22 |

0 commit comments

Comments
 (0)