Skip to content

Commit

Permalink
Bump version 0.8.1 -> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Apr 30, 2023
1 parent 658f42a commit 15a76e1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_proto"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
authors = ["Gino Valente <gino.valente.code@gmail.com>"]
description = "Create config files for entities in Bevy"
Expand Down Expand Up @@ -99,7 +99,7 @@ bevy_ui = [
]

[dependencies]
bevy_proto_backend = { version = "0.1.1", path = "./bevy_proto_backend" }
bevy_proto_backend = { version = "0.2", path = "./bevy_proto_backend" }
bevy = { version = ">=0.10.1", default-features = false, features = ["bevy_asset"] }
anyhow = "1.0"
serde = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This crate can be used for:
Add the following to your `[dependencies]` section in `Cargo.toml`:
```rust
bevy_proto = "0.8"
bevy_proto = "0.9"
```
Or use `cargo add`:
Expand All @@ -96,7 +96,7 @@ using the crate.

| bevy | bevy_proto |
|--------|------------|
| 0.10.1 | 0.8.0 |
| 0.10.1 | 0.9.0 |

For previous versions of this crate, see the [Previous Versions](#-previous-versions) section below.

Expand Down
4 changes: 2 additions & 2 deletions bevy_proto_backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_proto_backend"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
authors = ["Gino Valente <gino.valente.code@gmail.com>"]
description = "Backend crate for bevy_proto"
Expand Down Expand Up @@ -62,7 +62,7 @@ bevy_ui = [
]

[dependencies]
bevy_proto_derive = { version = "0.3.1", path = "../bevy_proto_derive" }
bevy_proto_derive = { version = "0.4", path = "../bevy_proto_derive" }
bevy = { version = ">=0.10.1", default-features = false, features = ["bevy_asset"] }
anyhow = "1.0"
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion bevy_proto_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_proto_derive"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
authors = ["Gino Valente <gino.valente.code@gmail.com>"]
description = "Derive macro for use with bevy_proto"
Expand Down

0 comments on commit 15a76e1

Please sign in to comment.