Skip to content

Commit fd7c353

Browse files
committed
Release 0.17.0-rc.2
1 parent b27ce37 commit fd7c353

File tree

61 files changed

+604
-604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+604
-604
lines changed

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -588,12 +588,12 @@ hotpatching = ["bevy_internal/hotpatching"]
588588
debug = ["bevy_internal/debug"]
589589

590590
[dependencies]
591-
bevy_internal = { path = "crates/bevy_internal", version = "0.17.0-rc.1", default-features = false }
591+
bevy_internal = { path = "crates/bevy_internal", version = "0.17.0-rc.2", default-features = false }
592592
tracing = { version = "0.1", default-features = false, optional = true }
593593

594594
# Wasm does not support dynamic linking.
595595
[target.'cfg(not(target_family = "wasm"))'.dependencies]
596-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.17.0-rc.1", default-features = false, optional = true }
596+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.17.0-rc.2", default-features = false, optional = true }
597597

598598
[dev-dependencies]
599599
rand = "0.9.0"
@@ -604,14 +604,14 @@ serde = { version = "1", features = ["derive"] }
604604
serde_json = "1.0.140"
605605
bytemuck = "1"
606606
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.
607-
bevy_animation = { path = "crates/bevy_animation", version = "0.17.0-rc.1", default-features = false }
608-
bevy_asset = { path = "crates/bevy_asset", version = "0.17.0-rc.1", default-features = false }
609-
bevy_ecs = { path = "crates/bevy_ecs", version = "0.17.0-rc.1", default-features = false }
610-
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.17.0-rc.1", default-features = false }
611-
bevy_image = { path = "crates/bevy_image", version = "0.17.0-rc.1", default-features = false }
612-
bevy_reflect = { path = "crates/bevy_reflect", version = "0.17.0-rc.1", default-features = false }
613-
bevy_render = { path = "crates/bevy_render", version = "0.17.0-rc.1", default-features = false }
614-
bevy_state = { path = "crates/bevy_state", version = "0.17.0-rc.1", default-features = false }
607+
bevy_animation = { path = "crates/bevy_animation", version = "0.17.0-rc.2", default-features = false }
608+
bevy_asset = { path = "crates/bevy_asset", version = "0.17.0-rc.2", default-features = false }
609+
bevy_ecs = { path = "crates/bevy_ecs", version = "0.17.0-rc.2", default-features = false }
610+
bevy_gizmos = { path = "crates/bevy_gizmos", version = "0.17.0-rc.2", default-features = false }
611+
bevy_image = { path = "crates/bevy_image", version = "0.17.0-rc.2", default-features = false }
612+
bevy_reflect = { path = "crates/bevy_reflect", version = "0.17.0-rc.2", default-features = false }
613+
bevy_render = { path = "crates/bevy_render", version = "0.17.0-rc.2", default-features = false }
614+
bevy_state = { path = "crates/bevy_state", version = "0.17.0-rc.2", default-features = false }
615615
# Needed to poll Task examples
616616
futures-lite = "2.0.1"
617617
futures-timer = { version = "3", features = ["wasm-bindgen", "gloo-timers"] }

crates/bevy_a11y/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_a11y"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides accessibility support for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -40,10 +40,10 @@ critical-section = [
4040

4141
[dependencies]
4242
# bevy
43-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1", default-features = false }
44-
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.1" }
45-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1", default-features = false }
46-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", default-features = false, optional = true }
43+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2", default-features = false }
44+
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.2" }
45+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2", default-features = false }
46+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", default-features = false, optional = true }
4747

4848
# other
4949
accesskit = { version = "0.21", default-features = false }

crates/bevy_android/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_android"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides android functionality for Bevy Engine."
66
homepage = "https://bevy.org"

crates/bevy_animation/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_animation"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides animation functionality for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -10,21 +10,21 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_animation_macros = { path = "macros", version = "0.17.0-rc.1" }
14-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1" }
15-
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.1" }
16-
bevy_color = { path = "../bevy_color", version = "0.17.0-rc.1" }
17-
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.1" }
18-
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.1" }
19-
bevy_mesh = { path = "../bevy_mesh", version = "0.17.0-rc.1" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", features = [
13+
bevy_animation_macros = { path = "macros", version = "0.17.0-rc.2" }
14+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2" }
15+
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.2" }
16+
bevy_color = { path = "../bevy_color", version = "0.17.0-rc.2" }
17+
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.2" }
18+
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.2" }
19+
bevy_mesh = { path = "../bevy_mesh", version = "0.17.0-rc.2" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", features = [
2121
"petgraph",
2222
] }
23-
bevy_time = { path = "../bevy_time", version = "0.17.0-rc.1" }
24-
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.1" }
25-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1" }
26-
bevy_transform = { path = "../bevy_transform", version = "0.17.0-rc.1" }
27-
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.1", default-features = false, features = [
23+
bevy_time = { path = "../bevy_time", version = "0.17.0-rc.2" }
24+
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.2" }
25+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2" }
26+
bevy_transform = { path = "../bevy_transform", version = "0.17.0-rc.2" }
27+
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.2", default-features = false, features = [
2828
"std",
2929
"serialize",
3030
] }

crates/bevy_animation/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_animation_macros"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
description = "Macros for bevy_animation"
55
edition = "2024"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
proc-macro = true
1010

1111
[dependencies]
12-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.17.0-rc.1" }
12+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.17.0-rc.2" }
1313

1414
syn = { version = "2.0", features = ["full"] }
1515
quote = "1.0"

crates/bevy_anti_alias/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_anti_alias"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides various anti aliasing implementations for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -18,19 +18,19 @@ force_disable_dlss = ["dlss_wgpu?/mock"]
1818

1919
[dependencies]
2020
# bevy
21-
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.1" }
22-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1" }
23-
bevy_render = { path = "../bevy_render", version = "0.17.0-rc.1" }
24-
bevy_camera = { path = "../bevy_camera", version = "0.17.0-rc.1" }
25-
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.1" }
26-
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.1" }
27-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1" }
28-
bevy_image = { path = "../bevy_image", version = "0.17.0-rc.1" }
29-
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.1" }
30-
bevy_shader = { path = "../bevy_shader", version = "0.17.0-rc.1" }
31-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1" }
32-
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.17.0-rc.1" }
33-
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.17.0-rc.1" }
21+
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.2" }
22+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2" }
23+
bevy_render = { path = "../bevy_render", version = "0.17.0-rc.2" }
24+
bevy_camera = { path = "../bevy_camera", version = "0.17.0-rc.2" }
25+
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.2" }
26+
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.2" }
27+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2" }
28+
bevy_image = { path = "../bevy_image", version = "0.17.0-rc.2" }
29+
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.2" }
30+
bevy_shader = { path = "../bevy_shader", version = "0.17.0-rc.2" }
31+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2" }
32+
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.17.0-rc.2" }
33+
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.17.0-rc.2" }
3434

3535
# other
3636
tracing = { version = "0.1", default-features = false, features = ["std"] }

crates/bevy_app/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -81,12 +81,12 @@ hotpatching = [
8181

8282
[dependencies]
8383
# bevy
84-
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.1" }
85-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1", default-features = false }
86-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", default-features = false, optional = true }
87-
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.1", default-features = false }
88-
bevy_tasks = { path = "../bevy_tasks", version = "0.17.0-rc.1", default-features = false }
89-
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.1", default-features = false }
84+
bevy_derive = { path = "../bevy_derive", version = "0.17.0-rc.2" }
85+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2", default-features = false }
86+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", default-features = false, optional = true }
87+
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.2", default-features = false }
88+
bevy_tasks = { path = "../bevy_tasks", version = "0.17.0-rc.2", default-features = false }
89+
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.2", default-features = false }
9090

9191
# other
9292
downcast-rs = { version = "2", default-features = false }

crates/bevy_asset/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -22,19 +22,19 @@ watch = []
2222
trace = []
2323

2424
[dependencies]
25-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1", default-features = false, features = [
25+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2", default-features = false, features = [
2626
"bevy_reflect",
2727
] }
28-
bevy_asset_macros = { path = "macros", version = "0.17.0-rc.1" }
29-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1", default-features = false }
30-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", default-features = false, features = [
28+
bevy_asset_macros = { path = "macros", version = "0.17.0-rc.2" }
29+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2", default-features = false }
30+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", default-features = false, features = [
3131
"uuid",
3232
] }
33-
bevy_tasks = { path = "../bevy_tasks", version = "0.17.0-rc.1", default-features = false, features = [
33+
bevy_tasks = { path = "../bevy_tasks", version = "0.17.0-rc.2", default-features = false, features = [
3434
"async_executor",
3535
] }
36-
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.1", default-features = false }
37-
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.1", default-features = false, features = [
36+
bevy_utils = { path = "../bevy_utils", version = "0.17.0-rc.2", default-features = false }
37+
bevy_platform = { path = "../bevy_platform", version = "0.17.0-rc.2", default-features = false, features = [
3838
"std",
3939
] }
4040

@@ -68,7 +68,7 @@ uuid = { version = "1.13.1", default-features = false, features = [
6868
tracing = { version = "0.1", default-features = false }
6969

7070
[target.'cfg(target_os = "android")'.dependencies]
71-
bevy_android = { path = "../bevy_android", version = "0.17.0-rc.1", default-features = false }
71+
bevy_android = { path = "../bevy_android", version = "0.17.0-rc.2", default-features = false }
7272

7373
[target.'cfg(target_arch = "wasm32")'.dependencies]
7474
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
@@ -81,10 +81,10 @@ web-sys = { version = "0.3", features = [
8181
wasm-bindgen-futures = "0.4"
8282
js-sys = "0.3"
8383
uuid = { version = "1.13.1", default-features = false, features = ["js"] }
84-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1", default-features = false, features = [
84+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2", default-features = false, features = [
8585
"web",
8686
] }
87-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", default-features = false, features = [
87+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", default-features = false, features = [
8888
"web",
8989
] }
9090

crates/bevy_asset/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset_macros"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Derive implementations for bevy_asset"
66
homepage = "https://bevy.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.17.0-rc.1" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.17.0-rc.2" }
1616

1717
syn = "2.0"
1818
proc-macro2 = "1.0"

crates/bevy_audio/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_audio"
3-
version = "0.17.0-rc.1"
3+
version = "0.17.0-rc.2"
44
edition = "2024"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevy.org"
@@ -10,12 +10,12 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.1" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.1" }
16-
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.1" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1" }
18-
bevy_transform = { path = "../bevy_transform", version = "0.17.0-rc.1" }
13+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.17.0-rc.2" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-rc.2" }
16+
bevy_math = { path = "../bevy_math", version = "0.17.0-rc.2" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2" }
18+
bevy_transform = { path = "../bevy_transform", version = "0.17.0-rc.2" }
1919

2020
# other
2121
# TODO: Remove `coreaudio-sys` dep below when updating `cpal`.
@@ -35,10 +35,10 @@ coreaudio-sys = { version = "0.2.17", default-features = false }
3535
rodio = { version = "0.20", default-features = false, features = [
3636
"wasm-bindgen",
3737
] }
38-
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.1", default-features = false, features = [
38+
bevy_app = { path = "../bevy_app", version = "0.17.0-rc.2", default-features = false, features = [
3939
"web",
4040
] }
41-
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.1", default-features = false, features = [
41+
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-rc.2", default-features = false, features = [
4242
"web",
4343
] }
4444

0 commit comments

Comments
 (0)