Skip to content

Commit

Permalink
Bump to 0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mvlabat committed Jul 10, 2023
1 parent f7e8c42 commit 29ede3f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.21.0] - 10-Jul-2023

### Changed

- Update Bevy to 0.11 ([#188](https://github.com/mvlabat/bevy_egui/pull/188) by @Vrixyz)
- Update Egui to 0.22 ([#190](https://github.com/mvlabat/bevy_egui/pull/190))
- Move sampler descriptor into `EguiSettings` ([#179](https://github.com/mvlabat/bevy_egui/pull/179) by @GlummixX)
- Update GitHub Actions CI ([#183](https://github.com/mvlabat/bevy_egui/pull/183) by @striezel)

### Added

- Add touch events support ([#180](https://github.com/mvlabat/bevy_egui/pull/180) by @oscrim)

## [0.20.3] - 21-Apr-2023

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_egui"
version = "0.20.3"
version = "0.21.0"
authors = ["mvlabat <mvlabat@gmail.com>"]
description = "A plugin for Egui integration into Bevy"
license = "MIT"
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Here's a minimal usage example:
```toml
# Cargo.toml
[dependencies]
bevy = "0.10"
bevy_egui = "0.20"
bevy = "0.11"
bevy_egui = "0.21"
```

```rust
Expand All @@ -50,7 +50,7 @@ use bevy_egui::{egui, EguiContexts, EguiPlugin};
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(EguiPlugin)
.add_plugins(EguiPlugin)
// Systems that create Egui widgets should be run during the `CoreSet::Update` set,
// or after the `EguiSet::BeginFrame` system (which belongs to the `CoreSet::PreUpdate` set).
.add_systems(Update, ui_example_system)
Expand Down Expand Up @@ -81,6 +81,7 @@ cargo run --example ui

| bevy | bevy_egui |
|------|-----------|
| 0.11 | 0.21 |
| 0.10 | 0.20 |
| 0.9 | 0.17-0.19 |
| 0.8 | 0.15-0.16 |
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
//! fn main() {
//! App::new()
//! .add_plugins(DefaultPlugins)
//! .add_plugin(EguiPlugin)
//! .add_plugins(EguiPlugin)
//! // Systems that create Egui widgets should be run during the `CoreSet::Update` set,
//! // or after the `EguiSet::BeginFrame` system (which belongs to the `CoreSet::PreUpdate` set).
//! .add_system(ui_example_system)
//! .add_systems(Update, ui_example_system)
//! .run();
//! }
//!
Expand Down

0 comments on commit 29ede3f

Please sign in to comment.