-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 I have created a release *beep* *boop* --- ## [0.7.0](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](#180)) ([a8dba24](a8dba24)) ### Bug Fixes * create IntGrid white-image on asset load and minimize its size ([#183](#183)) ([23fd924](23fd924)) * insert Name component before evaluating `LdtkEntity` ([#186](#186)) ([a5c1579](a5c1579)) ### Documentation Changes * rewrite field_instances example, demonstrating LdtkFields API ([#187](#187)) ([7be6635](7be6635)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
18e6ef6
commit 58e22ce
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|