Skip to content

Commit

Permalink
chore: prepare 0.6 release (#169)
Browse files Browse the repository at this point in the history
Getting this up pre-emptively so we can quickly release after
`bevy_ecs_tilemap`. This branch will fail to compile until
`bevy_ecs_tilemap` 0.10 is released. If you want to preview the upgrade
to bevy 0.10 in your own game, you can point to the main branch of this
repo and use the patch removed in this diff in your dependencies:
```
bevy_ecs_ldtk = { git = "https://github.com/Trouv/bevy_ecs_ldtk", branch = "main" }

[patch.crates-io]
bevy_ecs_tilemap = { git = "https://github.com/geieredgar/bevy_ecs_tilemap", branch = "bevy_track" }
```
  • Loading branch information
Trouv committed Mar 31, 2023
1 parent b22b11d commit ec69373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ members = ["macros"]

[dependencies]
bevy_ecs_ldtk_macros = { version = "0.5.0", optional = true, path = "macros" }
bevy_ecs_tilemap = { version = "0.9", default-features = false }
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"] }
serde_json = "1.0"
Expand All @@ -38,6 +38,3 @@ render = ["bevy_ecs_tilemap/render"]
[[example]]
name = "platformer"
path = "examples/platformer/main.rs"

[patch.crates-io]
bevy_ecs_tilemap = { version = "0.9", git = "https://github.com/geieredgar/bevy_ecs_tilemap", branch = "bevy_track" }
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ for additional level-loading options.
### Compatibility
| bevy | bevy_ecs_tilemap | LDtk | bevy_ecs_ldtk |
| --- | --- | --- | --- |
| 0.10 | 0.10 | 1.1+ | 0.6 |
| 0.9 | 0.9 | 1.1 | 0.5 |
| 0.8 | 0.7 | 1.1 | 0.4 |
| 0.7 | 0.6 | 1.1 | 0.3 |
Expand Down

0 comments on commit ec69373

Please sign in to comment.