Skip to content

Commit

Permalink
Bump to 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Feb 4, 2022
1 parent 5511be2 commit a328111
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.11.0] - 4-Feb-2022

### Changed

- Introduce mutable getters for EguiContext, feature gate immutable ones ([#64](https://github.com/mvlabat/bevy_egui/pull/63)).
- If you used `bevy_egui` without the `multi_threaded` feature, you'll need to change every `ctx` call to `ctx_mut`.

## [0.10.3] - 29-Jan-2022

### Added
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.10.3"
version = "0.11.0"
authors = ["mvlabat <[email protected]>"]
description = "A plugin for Egui integration into Bevy"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Here's a minimal usage example:
# Cargo.toml
[dependencies]
bevy = "0.6"
bevy_egui = "0.10"
bevy_egui = "0.11"
```

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

| bevy | bevy_egui |
|------|-----------|
| 0.6 | 0.10 |
| 0.6 | 0.10-0.11 |
| 0.5 | 0.4-0.9 |
| 0.4 | 0.1-0.3 |

0 comments on commit a328111

Please sign in to comment.