Skip to content

Commit

Permalink
bump to version v0.5.0
Browse files Browse the repository at this point in the history
* update bevy_ecs_tilemap to v0.15
  • Loading branch information
adrien-bon committed Dec 15, 2024
1 parent 1ab998b commit 97d9b37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [unreleased]

## v0.5.0

**BREAKING CHANGES**
This version brings breaking changes.
A [migration guide](https://adrien-bon.github.io/bevy_ecs_tiled/migrations/v0_5.html) is available to help adapt to these.
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]
edition = "2021"
name = "bevy_ecs_tiled"
version = "0.4.2"
version = "0.5.0"

authors = ["Steve Pryde <[email protected]>", "Adrien Bon"]
description = "A Bevy plugin for loading Tiled maps"
Expand Down Expand Up @@ -47,7 +47,7 @@ user_properties = ["dep:serde", "dep:serde_json"]
[dependencies]
# Main dependencies
bevy = { version = "0.15", default-features = false }
bevy_ecs_tilemap = { git = "https://github.com/rparrett/bevy_ecs_tilemap.git", rev = "86235d6f9f4f05cd4e3f6af9d3392b08a590a48f", default-features = false }
bevy_ecs_tilemap = { version = "0.15", default-features = false }
tiled = "0.13"

# Utilities
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add dependencies to your `Cargo.toml` file:
```toml
[dependencies]
bevy = "0.15"
bevy_ecs_tiled = "0.4"
bevy_ecs_tiled = "0.5"
bevy_ecs_tilemap = "0.15"
```

Expand Down
2 changes: 1 addition & 1 deletion book/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Add dependencies to your `Cargo.toml` file:
```toml
[dependencies]
bevy = "0.15"
bevy_ecs_tiled = "0.4"
bevy_ecs_tiled = "0.5"
bevy_ecs_tilemap = "0.15"
```

Expand Down

0 comments on commit 97d9b37

Please sign in to comment.