diff --git a/CHANGELOG.md b/CHANGELOG.md index faffb91d..49731b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.7.0](https://github.com/Trouv/bevy_ecs_ldtk/compare/v0.6.0...v0.7.0) (2023-04-29) + + +### ⚠ BREAKING CHANGES + +* Most likely won't affect users - `LdtkAsset` has gained a `int_grid_image_handle` field, breaking any manual construction of it. + +### Features + +* add LdtkFields trait with convenience methods for accessing field instances ([#180](https://github.com/Trouv/bevy_ecs_ldtk/issues/180)) ([a8dba24](https://github.com/Trouv/bevy_ecs_ldtk/commit/a8dba247ffee79c1eae2a2669c7ca0c6e5d17dd9)) + + +### Bug Fixes + +* create IntGrid white-image on asset load and minimize its size ([#183](https://github.com/Trouv/bevy_ecs_ldtk/issues/183)) ([23fd924](https://github.com/Trouv/bevy_ecs_ldtk/commit/23fd9244484505c50e2f6232aaf7a7d6355e0452)) +* insert Name component before evaluating `LdtkEntity` ([#186](https://github.com/Trouv/bevy_ecs_ldtk/issues/186)) ([a5c1579](https://github.com/Trouv/bevy_ecs_ldtk/commit/a5c157936bb25bf1a13b4796ce2eea880cfa6687)) + + +### Documentation Changes + +* rewrite field_instances example, demonstrating LdtkFields API ([#187](https://github.com/Trouv/bevy_ecs_ldtk/issues/187)) ([7be6635](https://github.com/Trouv/bevy_ecs_ldtk/commit/7be663592ff7a173491f1f8d1679445c882d8752)) + ## [0.6.0](https://github.com/Trouv/bevy_ecs_ldtk/compare/v0.5.0...v0.6.0) (2023-03-31) diff --git a/Cargo.toml b/Cargo.toml index 6cfd4327..030d643f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_ecs_ldtk" description = "An ECS-friendly ldtk plugin for bevy." -version = "0.6.0" +version = "0.7.0" edition = "2021" authors = ["Trevor Lovell "] repository = "https://github.com/Trouv/bevy_ecs_ldtk" @@ -14,7 +14,7 @@ exclude = ["assets/*", "repo/*", "scripts/*"] members = ["macros"] [dependencies] -bevy_ecs_ldtk_macros = { version = "0.6.0", optional = true, path = "macros" } +bevy_ecs_ldtk_macros = { version = "0.7.0", optional = true, path = "macros" } bevy_ecs_tilemap = { version = "0.10", default-features = false } bevy = { version = "0.10", default-features = false, features = ["bevy_sprite"] } serde = { version = "1.0", features = ["derive"] } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 3024d273..b0251c15 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_ecs_ldtk_macros" description = "Derive macros for bevy_ecs_ldtk." -version = "0.6.0" +version = "0.7.0" edition = "2021" authors = ["Trevor Lovell "] license = "MIT OR Apache-2.0"