Skip to content

Commit

Permalink
Bumped version 0.1.0 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Jan 6, 2022
1 parent 5e23fcd commit b81d2d7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
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"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ Add one of the following lines to your `Cargo.toml`.

```toml
[dependencies]
bevy_tileset_tiles = "0.1" # For the base tile definitions
bevy_tileset = "0.1" # For general tileset usage (includes above)
bevy_tileset_tiles = "0.2" # For the base tile definitions
bevy_tileset = "0.2" # For general tileset usage (includes above)

# The bevy_ecs_tilemap integration crate has not yet been published
# So the you will need to get it from the git
bevy_ecs_tilemap_tileset = { git = "https://github.com/MrGVSV/bevy_tileset", version = "0.1" }
bevy_ecs_tilemap_tileset = { git = "https://github.com/MrGVSV/bevy_tileset", version = "0.2" }
```

## ✨ Usage
Expand Down Expand Up @@ -234,5 +234,5 @@ These tiles are defined with the [`bevy_ecs_tilemap`](https://github.com/StarAra

| bevy | bevy_tileset |
| ---- | ------------ |
| 0.5 | 0.1 |
| 0.5 | 0.2 |

4 changes: 2 additions & 2 deletions bevy_ecs_tilemap_tileset/Cargo.toml
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"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions bevy_tileset_core/Cargo.toml
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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bevy_tileset_tiles/Cargo.toml
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"
Expand Down

0 comments on commit b81d2d7

Please sign in to comment.