Skip to content

Commit b643604

Browse files
committed
Change 0.15.0-rc to 0.15
1 parent 7838140 commit b643604

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

crates/avian2d/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ bench = false
5959

6060
[dependencies]
6161
avian_derive = { path = "../avian_derive", version = "0.1" }
62-
bevy = { version = "0.15.0-rc", default-features = false }
63-
bevy_math = { version = "0.15.0-rc" }
62+
bevy = { version = "0.15", default-features = false }
63+
bevy_math = { version = "0.15" }
6464
libm = { version = "0.2", optional = true }
6565
parry2d = { version = "0.17", optional = true }
6666
parry2d-f64 = { version = "0.17", optional = true }
@@ -75,7 +75,7 @@ bitflags = "2.5.0"
7575
[dev-dependencies]
7676
examples_common_2d = { path = "../examples_common_2d" }
7777
benches_common_2d = { path = "../benches_common_2d" }
78-
bevy_math = { version = "0.15.0-rc", features = ["approx"] }
78+
bevy_math = { version = "0.15", features = ["approx"] }
7979
glam = { version = "0.29", features = ["bytemuck"] }
8080
approx = "0.5"
8181
bytemuck = "1.19"

crates/avian3d/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ bench = false
6161

6262
[dependencies]
6363
avian_derive = { path = "../avian_derive", version = "0.1" }
64-
bevy = { version = "0.15.0-rc", default-features = false }
65-
bevy_math = { version = "0.15.0-rc" }
64+
bevy = { version = "0.15", default-features = false }
65+
bevy_math = { version = "0.15" }
6666
libm = { version = "0.2", optional = true }
6767
parry3d = { version = "0.17", optional = true }
6868
parry3d-f64 = { version = "0.17", optional = true }
@@ -75,13 +75,13 @@ itertools = "0.13"
7575
bitflags = "2.5.0"
7676

7777
[dev-dependencies]
78-
bevy = { version = "0.15.0-rc", default-features = false, features = [
78+
bevy = { version = "0.15", default-features = false, features = [
7979
"bevy_gltf",
8080
"animation",
8181
] }
8282
examples_common_3d = { path = "../examples_common_3d" }
8383
benches_common_3d = { path = "../benches_common_3d" }
84-
bevy_math = { version = "0.15.0-rc", features = ["approx"] }
84+
bevy_math = { version = "0.15", features = ["approx"] }
8585
approx = "0.5"
8686
criterion = { version = "0.5", features = ["html_reports"] }
8787
bevy_mod_debugdump = { git = "https://github.com/jakobhellermann/bevy_mod_debugdump" }

crates/benches_common_2d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
bevy = { version = "0.15.0-rc", default-features = false }
7+
bevy = { version = "0.15", default-features = false }
88
avian2d = { path = "../avian2d", default-features = false }
99
criterion = "0.5"

crates/benches_common_3d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
bevy = { version = "0.15.0-rc", default-features = false }
7+
bevy = { version = "0.15", default-features = false }
88
avian3d = { path = "../avian3d", default-features = false }
99
criterion = "0.5"

crates/examples_common_2d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
use-debug-plugin = []
88

99
[dependencies]
10-
bevy = { version = "0.15.0-rc", default-features = false, features = [
10+
bevy = { version = "0.15", default-features = false, features = [
1111
"bevy_core_pipeline",
1212
"bevy_state",
1313
"bevy_text",

crates/examples_common_3d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
use-debug-plugin = []
88

99
[dependencies]
10-
bevy = { version = "0.15.0-rc", default-features = false, features = [
10+
bevy = { version = "0.15", default-features = false, features = [
1111
"bevy_core_pipeline",
1212
"bevy_state",
1313
"bevy_text",

0 commit comments

Comments
 (0)