Skip to content

Commit

Permalink
chore(main): release 0.8.0 (#197)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[0.8.0](v0.7.0...v0.8.0)
(2023-07-31)


### ⚠ BREAKING CHANGES

* upgrade to bevy and bevy_ecs_tilemap 0.11
([#204](#204))
* `LdtkAsset::world_height` has been removed
* upgrade LDtk types to 1.3.3 (dropping support for <1.3.3 LDtk
projects) ([#203](#203))

### Features

* add `EntityIid` component which is added to all entities by default
([#194](#194))
([d99f1ae](d99f1ae))
* register and derive Reflect for LdtkLevel and dependent types
([#201](#201))
([873ed17](873ed17))
* upgrade LDtk types to 1.3.3 (dropping support for &lt;1.3.3 LDtk
projects) ([#203](#203))
([e347780](e347780))
* upgrade to bevy and bevy_ecs_tilemap 0.11
([#204](#204))
([ef1b075](ef1b075))


### Bug Fixes

* remove `LdtkAsset::world_height` and correct `UseWorldTranslation`
y-calculation
([#207](#207))
([8923b4e](8923b4e))


### Documentation Changes

* fix code links in entity_iid module
([#210](#210))
([53728b3](53728b3))

---
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
github-actions[bot] authored Jul 31, 2023
1 parent c0e1dda commit 9a10bc8
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.8.0](https://github.com/Trouv/bevy_ecs_ldtk/compare/v0.7.0...v0.8.0) (2023-07-31)


### ⚠ BREAKING CHANGES

* upgrade to bevy and bevy_ecs_tilemap 0.11 ([#204](https://github.com/Trouv/bevy_ecs_ldtk/issues/204))
* `LdtkAsset::world_height` has been removed
* upgrade LDtk types to 1.3.3 (dropping support for <1.3.3 LDtk projects) ([#203](https://github.com/Trouv/bevy_ecs_ldtk/issues/203))

### Features

* add `EntityIid` component which is added to all entities by default ([#194](https://github.com/Trouv/bevy_ecs_ldtk/issues/194)) ([d99f1ae](https://github.com/Trouv/bevy_ecs_ldtk/commit/d99f1ae7eec28114d9277e5c5063418234fcc261))
* register and derive Reflect for LdtkLevel and dependent types ([#201](https://github.com/Trouv/bevy_ecs_ldtk/issues/201)) ([873ed17](https://github.com/Trouv/bevy_ecs_ldtk/commit/873ed179b8fe80b95100f1aabaf63754ad285f74))
* upgrade LDtk types to 1.3.3 (dropping support for &lt;1.3.3 LDtk projects) ([#203](https://github.com/Trouv/bevy_ecs_ldtk/issues/203)) ([e347780](https://github.com/Trouv/bevy_ecs_ldtk/commit/e3477804906f3a8f1ff5afc209734fe4891fc439))
* upgrade to bevy and bevy_ecs_tilemap 0.11 ([#204](https://github.com/Trouv/bevy_ecs_ldtk/issues/204)) ([ef1b075](https://github.com/Trouv/bevy_ecs_ldtk/commit/ef1b075a12b4793575a1f310421f5062a403494e))


### Bug Fixes

* remove `LdtkAsset::world_height` and correct `UseWorldTranslation` y-calculation ([#207](https://github.com/Trouv/bevy_ecs_ldtk/issues/207)) ([8923b4e](https://github.com/Trouv/bevy_ecs_ldtk/commit/8923b4e01b1d78c7516299fbf052a09bc37ea657))


### Documentation Changes

* fix code links in entity_iid module ([#210](https://github.com/Trouv/bevy_ecs_ldtk/issues/210)) ([53728b3](https://github.com/Trouv/bevy_ecs_ldtk/commit/53728b3dd0a969dfad08cfccecc1e5f4e1fee03d))

## [0.7.0](https://github.com/Trouv/bevy_ecs_ldtk/compare/v0.6.0...v0.7.0) (2023-04-29)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
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.7.0"
version = "0.8.0"
edition = "2021"
authors = ["Trevor Lovell <[email protected]>"]
repository = "https://github.com/Trouv/bevy_ecs_ldtk"
Expand All @@ -14,7 +14,7 @@ exclude = ["assets/*", "repo/*", "scripts/*"]
members = ["macros"]

[dependencies]
bevy_ecs_ldtk_macros = { version = "0.7.0", optional = true, path = "macros" }
bevy_ecs_ldtk_macros = { version = "0.8.0", optional = true, path = "macros" }
bevy_ecs_tilemap = { version = "0.11", default-features = false }
bevy = { version = "0.11", default-features = false, features = ["bevy_sprite"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
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.7.0"
version = "0.8.0"
edition = "2021"
authors = ["Trevor Lovell <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 9a10bc8

Please sign in to comment.