Skip to content

Commit

Permalink
Update to Bevy 0.12 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoJoJet committed Nov 5, 2023
1 parent 7347ef9 commit 2869f9d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
16 changes: 6 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy-trait-query"
version = "0.4.0-dev"
version = "0.4.0"
edition = "2021"

description = "Implementation of trait queries for the bevy game engine"
Expand All @@ -15,29 +15,25 @@ categories = ["game-development"]
default = ["bevy_app", "bevy_core"]

[dependencies]
bevy-trait-query-impl = { path = "proc-macro", version = "0.4.0-dev" }
bevy-trait-query-impl = { path = "proc-macro", version = "0.4.0" }
tracing = "0.1"

[dependencies.bevy_ecs]
git = "https://github.com/bevyengine/bevy"
rev = "060711669903306c59eaea427498948992f0e768"
version = "0.12"

[dependencies.bevy_app]
git = "https://github.com/bevyengine/bevy"
rev = "060711669903306c59eaea427498948992f0e768"
version = "0.12"
optional = true

[dependencies.bevy_core]
git = "https://github.com/bevyengine/bevy"
rev = "060711669903306c59eaea427498948992f0e768"
version = "0.12"
optional = true

[dev-dependencies]
criterion = "0.5"

[dev-dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
rev = "060711669903306c59eaea427498948992f0e768"
version = "0.12"
default-features = false

[[bench]]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Before using this crate, you should be familiar with bevy: https://bevyengine.or

| Bevy Version | [Crate Version](CHANGELOG.md) |
|--------------|---------------|
| 0.12 | 0.4 |
| 0.11 | 0.3 |
| 0.10 | 0.2 |
| 0.9 | 0.1 |
Expand Down
2 changes: 1 addition & 1 deletion proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy-trait-query-impl"
version = "0.4.0-dev"
version = "0.4.0"
edition = "2021"

description = "Procedural macro for `bevy-trait-query`"
Expand Down

0 comments on commit 2869f9d

Please sign in to comment.