Skip to content

Commit

Permalink
Bump version (to update bevy_egui version)
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Mar 19, 2024
1 parent 2282e5d commit 7d85c51
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 0.20.0 - 2024-03-19
### Changed
- Update bevy_egui version to 0.26.

## 0.19.0 - 2024-02-27
### Changed
- Upgrade bevy_egui to 0.24.
- Update Bevy version to 0.13 and bevy_egui version to 0.25.
- [**BREAKING**] Changed some API types to use Bevy's new math types. See the
[migration guide](MIGRATION-GUIDES.md#migrating-to-yoleck-019).

## 0.18.0 - 2024-02-18
### Changed
- Upgrade bevy_egui to 0.24.

### Fixed
- [**BREAKING**] Typo - `Rotatation` -> `Rotation` in Vpeol.

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["macros"]
[package]
name = "bevy-yoleck"
description = "Your Own Level Editor Creation Kit"
version = "0.19.0"
version = "0.20.0"
edition = "2021"
authors = ["IdanArye <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -23,7 +23,7 @@ exclude = [
bevy-yoleck-macros = { version = "0.9.1", path = "macros" }
anyhow = "^1"
bevy = { version = "^0.13", default-features = false }
bevy_egui = { version = "^0.25", default-features = false, features = ["default_fonts"] }
bevy_egui = { version = "^0.26", default-features = false, features = ["default_fonts"] }
serde = "^1"
serde_json = "^1"
thiserror = "^1"
Expand All @@ -43,7 +43,7 @@ vpeol_3d = [

[dev-dependencies]
bevy = { version = "^0.13", default-features = false, features = ["bevy_sprite", "x11"] }
bevy_egui = { version = "^0.25", default-features = false, features = ["default_fonts", "render"] }
bevy_egui = { version = "^0.26", default-features = false, features = ["default_fonts", "render"] }

[[example]]
name = "example2d"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ at a directory's contents). The index file contains a tuple of two values:

| bevy | bevy-yoleck | bevy_egui |
|------|-------------|-----------|
| 0.13 | 0.20 | 0.26 |
| 0.13 | 0.19 | 0.25 |
| 0.12 | 0.18 | 0.24 |
| 0.12 | 0.16, 0.17 | 0.23 |
| 0.11 | 0.15 | 0.22 |
Expand Down

0 comments on commit 7d85c51

Please sign in to comment.