From 9088f9c6e95f257a2cda333ad7c24e37832ffbba Mon Sep 17 00:00:00 2001 From: Seldom <38388947+Seldom-SE@users.noreply.github.com> Date: Tue, 7 May 2024 21:07:03 -0700 Subject: [PATCH] 0.6 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- README.md | 15 ++++++++------- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04707a1..7259edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.6 (2024-05-07) + +### Changed + +- Updated `bevy` to 0.13 +- Replaced `bevy_ecs_tilemap` with built-in tilemap + ## 0.5 (2024-02-16) ### Added diff --git a/Cargo.toml b/Cargo.toml index 219da0a..a5abc9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seldom_pixel" -version = "0.5.0" +version = "0.6.0" edition = "2021" categories = ["game-development"] description = "Bevy plugin for limited color palette pixel art games" diff --git a/README.md b/README.md index 141761c..cec53a9 100644 --- a/README.md +++ b/README.md @@ -88,13 +88,14 @@ Then add `PxPlugin` to your app. Check out the examples for further usage. ## Compatibility -| Bevy | `seldom_state` | `seldom_interop` | `bevy_ecs_tilemap` | `seldom_pixel` | -| ---- | -------------- | ---------------- | ------------------ | -------------- | -| 0.12 | 0.9 | 0.5 | 0.12 | 0.5 | -| 0.11 | 0.7 | 0.4 | 0.11 | 0.4 | -| 0.10 | 0.6 | 0.3 | 0.10 | 0.3 | -| 0.10 | 0.5 | 0.3 | 0.10 | 0.2 | -| 0.8 | 0.2 | 0.1 | 0.7 | 0.1 | +| Bevy | `seldom_state` | `seldom_map_nav` | `seldom_interop` | `bevy_ecs_tilemap` | `seldom_pixel` | +| ---- | -------------- | ---------------- | ---------------- | ------------------ | -------------- | +| 0.13 | 0.10 | 0.6 | | | 0.6 | +| 0.12 | 0.9 | | 0.5 | 0.12 | 0.5 | +| 0.11 | 0.7 | | 0.4 | 0.11 | 0.4 | +| 0.10 | 0.6 | | 0.3 | 0.10 | 0.3 | +| 0.10 | 0.5 | | 0.3 | 0.10 | 0.2 | +| 0.8 | 0.2 | | 0.1 | 0.7 | 0.1 | ## License