Skip to content

Commit 2869f9d

Browse files
authored
Update to Bevy 0.12 (#49)
1 parent 7347ef9 commit 2869f9d

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

Cargo.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy-trait-query"
3-
version = "0.4.0-dev"
3+
version = "0.4.0"
44
edition = "2021"
55

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

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

2121
[dependencies.bevy_ecs]
22-
git = "https://github.com/bevyengine/bevy"
23-
rev = "060711669903306c59eaea427498948992f0e768"
22+
version = "0.12"
2423

2524
[dependencies.bevy_app]
26-
git = "https://github.com/bevyengine/bevy"
27-
rev = "060711669903306c59eaea427498948992f0e768"
25+
version = "0.12"
2826
optional = true
2927

3028
[dependencies.bevy_core]
31-
git = "https://github.com/bevyengine/bevy"
32-
rev = "060711669903306c59eaea427498948992f0e768"
29+
version = "0.12"
3330
optional = true
3431

3532
[dev-dependencies]
3633
criterion = "0.5"
3734

3835
[dev-dependencies.bevy]
39-
git = "https://github.com/bevyengine/bevy"
40-
rev = "060711669903306c59eaea427498948992f0e768"
36+
version = "0.12"
4137
default-features = false
4238

4339
[[bench]]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Before using this crate, you should be familiar with bevy: https://bevyengine.or
66

77
| Bevy Version | [Crate Version](CHANGELOG.md) |
88
|--------------|---------------|
9+
| 0.12 | 0.4 |
910
| 0.11 | 0.3 |
1011
| 0.10 | 0.2 |
1112
| 0.9 | 0.1 |

proc-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy-trait-query-impl"
3-
version = "0.4.0-dev"
3+
version = "0.4.0"
44
edition = "2021"
55

66
description = "Procedural macro for `bevy-trait-query`"

0 commit comments

Comments
 (0)