-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
13 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_tileset" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Gino Valente <[email protected]>"] | ||
description = "Simple, configurable tilesets in Bevy using RON" | ||
|
@@ -18,8 +18,8 @@ members = ["bevy_tileset_core", "bevy_tileset_tiles", "bevy_ecs_tilemap_tileset" | |
maintenance = { status = "experimental" } | ||
|
||
[dependencies] | ||
bevy_tileset_tiles = { path = "./bevy_tileset_tiles", version = "0.1" } | ||
bevy_tileset_core = { path = "./bevy_tileset_core", version = "0.1" } | ||
bevy_tileset_tiles = { path = "./bevy_tileset_tiles", version = "0.2" } | ||
bevy_tileset_core = { path = "./bevy_tileset_core", version = "0.2" } | ||
|
||
[dev-dependencies] | ||
bevy = "0.5" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "bevy_ecs_tilemap_tileset" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Gino Valente <[email protected]>"] | ||
description = "An extension to the bevy_ecs_tilemap, allowing for configurable tilesets, auto tiling, and more" | ||
|
@@ -12,7 +12,7 @@ readme = "../README.md" | |
exclude = ["assets/**/*", ".github/**/*", "screenshots/**/*"] | ||
|
||
[dependencies] | ||
bevy_tileset = { path = "..", version = "0.1" } | ||
bevy_tileset = { path = "..", version = "0.2" } | ||
bevy = { version = "0.5", default-features = false } | ||
bevy_ecs_tilemap = "0.4" | ||
serde = "1.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "bevy_tileset_core" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Gino Valente <[email protected]>"] | ||
description = "Core of bevy_tileset" | ||
|
@@ -12,8 +12,8 @@ readme = "../README.md" | |
exclude = ["assets/**/*", ".github/**/*", "screenshots/**/*"] | ||
|
||
[dependencies] | ||
bevy_tileset_tiles = { path = "../bevy_tileset_tiles", version = "0.1" } | ||
bevy = "0.5" | ||
bevy_tileset_tiles = { path = "../bevy_tileset_tiles", version = "0.2" } | ||
bevy = { version = "0.5", default-features = false } | ||
bevy_tile_atlas = "0.1" | ||
ron = "0.7.0" | ||
serde = "1.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "bevy_tileset_tiles" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Gino Valente <[email protected]>"] | ||
description = "Tile definitions used by bevy_tileset" | ||
|