Skip to content

Commit

Permalink
Bump to 0.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Nov 30, 2024
1 parent 7af4d68 commit deb7201
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.31.0] - 30-Nov-2024

### Changed

- Update to Bevy 0.15 ([#309](https://github.com/mvlabat/bevy_egui/pull/309) by @Vrixyz).

### Fixed

- Don't add `EguiContext` to every entity when the `render` feature is disabled ([#321](https://github.com/vladbat00/bevy_egui/pull/321) by @DGriffin91).

## [0.30.1] - 10-Nov-2024

### Changed
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "bevy_egui"
version = "0.30.1"
rust-version = "1.80.0" # needed for LazyLock https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html
version = "0.31.0"
# Needed for LazyLock https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html
rust-version = "1.80.0"
authors = ["mvlabat <[email protected]>"]
description = "A plugin for Egui integration into Bevy"
license = "MIT"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Here's a minimal usage example:
```toml
# Cargo.toml
[dependencies]
bevy = "0.14"
bevy_egui = "0.30"
bevy = "0.15"
bevy_egui = "0.31"
```

```rust
Expand Down Expand Up @@ -87,6 +87,7 @@ cargo run --example ui

| bevy | bevy_egui |
|------|-----------|
| 0.15 | 0.31 |
| 0.14 | 0.28-0.30 |
| 0.13 | 0.25-0.27 |
| 0.12 | 0.23-0.24 |
Expand Down

0 comments on commit deb7201

Please sign in to comment.