Skip to content

Commit 75f04a7

Browse files
committed
Release 0.15.3
1 parent 6f8e403 commit 75f04a7

File tree

51 files changed

+412
-412
lines changed

Some content is hidden

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

51 files changed

+412
-412
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -463,11 +463,11 @@ custom_cursor = ["bevy_internal/custom_cursor"]
463463
ghost_nodes = ["bevy_internal/ghost_nodes"]
464464

465465
[dependencies]
466-
bevy_internal = { path = "crates/bevy_internal", version = "0.15.2", default-features = false }
466+
bevy_internal = { path = "crates/bevy_internal", version = "0.15.3", default-features = false }
467467

468468
# Wasm does not support dynamic linking.
469469
[target.'cfg(not(target_family = "wasm"))'.dependencies]
470-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.2", default-features = false, optional = true }
470+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.3", default-features = false, optional = true }
471471

472472
[dev-dependencies]
473473
rand = "0.8.0"
@@ -477,7 +477,7 @@ flate2 = "1.0"
477477
serde = { version = "1", features = ["derive"] }
478478
serde_json = "1"
479479
bytemuck = "1.7"
480-
bevy_render = { path = "crates/bevy_render", version = "0.15.2", default-features = false }
480+
bevy_render = { path = "crates/bevy_render", version = "0.15.3", default-features = false }
481481
# Needed to poll Task examples
482482
futures-lite = "2.0.1"
483483
async-std = "1.13"

crates/bevy_a11y/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_a11y"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides accessibility support for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,10 +10,10 @@ keywords = ["bevy", "accessibility", "a11y"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
14-
bevy_derive = { path = "../bevy_derive", version = "0.15.2" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
16-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2" }
13+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
14+
bevy_derive = { path = "../bevy_derive", version = "0.15.3" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
16+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3" }
1717

1818
accesskit = "0.17"
1919

crates/bevy_animation/Cargo.toml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_animation"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides animation functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,23 +10,23 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.15.2" }
15-
bevy_color = { path = "../bevy_color", version = "0.15.3" }
16-
bevy_core = { path = "../bevy_core", version = "0.15.2" }
17-
bevy_derive = { path = "../bevy_derive", version = "0.15.2" }
18-
bevy_log = { path = "../bevy_log", version = "0.15.2" }
19-
bevy_math = { path = "../bevy_math", version = "0.15.2" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.15.3" }
15+
bevy_color = { path = "../bevy_color", version = "0.15.4" }
16+
bevy_core = { path = "../bevy_core", version = "0.15.3" }
17+
bevy_derive = { path = "../bevy_derive", version = "0.15.3" }
18+
bevy_log = { path = "../bevy_log", version = "0.15.3" }
19+
bevy_math = { path = "../bevy_math", version = "0.15.3" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", features = [
2121
"bevy",
2222
"petgraph",
2323
] }
24-
bevy_render = { path = "../bevy_render", version = "0.15.2" }
25-
bevy_time = { path = "../bevy_time", version = "0.15.2" }
26-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
27-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
28-
bevy_transform = { path = "../bevy_transform", version = "0.15.2" }
29-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.2" }
24+
bevy_render = { path = "../bevy_render", version = "0.15.3" }
25+
bevy_time = { path = "../bevy_time", version = "0.15.3" }
26+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
27+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
28+
bevy_transform = { path = "../bevy_transform", version = "0.15.3" }
29+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.3" }
3030

3131
# other
3232
petgraph = { version = "0.6", features = ["serde-1"] }

crates/bevy_app/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -21,11 +21,11 @@ reflect_functions = [
2121

2222
[dependencies]
2323
# bevy
24-
bevy_derive = { path = "../bevy_derive", version = "0.15.2" }
25-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2", default-features = false }
26-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", optional = true }
27-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
28-
bevy_tasks = { path = "../bevy_tasks", version = "0.15.2" }
24+
bevy_derive = { path = "../bevy_derive", version = "0.15.3" }
25+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3", default-features = false }
26+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", optional = true }
27+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
28+
bevy_tasks = { path = "../bevy_tasks", version = "0.15.3" }
2929

3030
# other
3131
downcast-rs = "1.2.0"

crates/bevy_asset/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -19,14 +19,14 @@ watch = []
1919
trace = []
2020

2121
[dependencies]
22-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
23-
bevy_asset_macros = { path = "macros", version = "0.15.2" }
24-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", features = [
22+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
23+
bevy_asset_macros = { path = "macros", version = "0.15.3" }
24+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", features = [
2626
"uuid",
2727
] }
28-
bevy_tasks = { path = "../bevy_tasks", version = "0.15.2" }
29-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
28+
bevy_tasks = { path = "../bevy_tasks", version = "0.15.3" }
29+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
3030

3131
stackfuture = "0.3"
3232
atomicow = "1.0"
@@ -52,7 +52,7 @@ derive_more = { version = "1", default-features = false, features = [
5252
uuid = { version = "=1.12", features = ["v4"] }
5353

5454
[target.'cfg(target_os = "android")'.dependencies]
55-
bevy_window = { path = "../bevy_window", version = "0.15.2" }
55+
bevy_window = { path = "../bevy_window", version = "0.15.3" }
5656

5757
[target.'cfg(target_arch = "wasm32")'.dependencies]
5858
wasm-bindgen = { version = "0.2" }
@@ -68,8 +68,8 @@ js-sys = "0.3"
6868
notify-debouncer-full = { version = "0.4.0", optional = true }
6969

7070
[dev-dependencies]
71-
bevy_core = { path = "../bevy_core", version = "0.15.2" }
72-
bevy_log = { path = "../bevy_log", version = "0.15.2" }
71+
bevy_core = { path = "../bevy_core", version = "0.15.3" }
72+
bevy_log = { path = "../bevy_log", version = "0.15.3" }
7373

7474
[lints]
7575
workspace = true

crates/bevy_asset/macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset_macros"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Derive implementations for bevy_asset"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.2" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.3" }
1616

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

crates/bevy_audio/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_audio"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,17 +10,17 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.15.2" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
16-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.2" }
17-
bevy_math = { path = "../bevy_math", version = "0.15.2" }
18-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.15.3" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
16+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.3" }
17+
bevy_math = { path = "../bevy_math", version = "0.15.3" }
18+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", features = [
1919
"bevy",
2020
] }
21-
bevy_transform = { path = "../bevy_transform", version = "0.15.2" }
22-
bevy_derive = { path = "../bevy_derive", version = "0.15.2" }
23-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
21+
bevy_transform = { path = "../bevy_transform", version = "0.15.3" }
22+
bevy_derive = { path = "../bevy_derive", version = "0.15.3" }
23+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
2424

2525
# other
2626
rodio = { version = "0.19", default-features = false }

crates/bevy_color/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_color"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
edition = "2021"
55
description = "Types for representing and manipulating color values"
66
homepage = "https://bevyengine.org"
@@ -10,10 +10,10 @@ keywords = ["bevy", "color"]
1010
rust-version = "1.76.0"
1111

1212
[dependencies]
13-
bevy_math = { path = "../bevy_math", version = "0.15.2", default-features = false, features = [
13+
bevy_math = { path = "../bevy_math", version = "0.15.3", default-features = false, features = [
1414
"curve",
1515
] }
16-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", features = [
16+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", features = [
1717
"bevy",
1818
], optional = true }
1919
bytemuck = { version = "1", features = ["derive"] }

crates/bevy_core/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides core functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,13 +10,13 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.15.2", default-features = false }
14-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2", default-features = false }
15-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.15.3", default-features = false }
14+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3", default-features = false }
15+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3", features = [
1616
"bevy",
1717
], optional = true }
18-
bevy_tasks = { path = "../bevy_tasks", version = "0.15.2" }
19-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
18+
bevy_tasks = { path = "../bevy_tasks", version = "0.15.3" }
19+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
2020

2121
# other
2222
serde = { version = "1.0", optional = true }

crates/bevy_core_pipeline/Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core_pipeline"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <[email protected]>",
@@ -22,19 +22,19 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"]
2222

2323
[dependencies]
2424
# bevy
25-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
26-
bevy_asset = { path = "../bevy_asset", version = "0.15.2" }
27-
bevy_core = { path = "../bevy_core", version = "0.15.2" }
28-
bevy_color = { path = "../bevy_color", version = "0.15.3" }
29-
bevy_derive = { path = "../bevy_derive", version = "0.15.2" }
30-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
31-
bevy_image = { path = "../bevy_image", version = "0.15.2" }
32-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2" }
33-
bevy_render = { path = "../bevy_render", version = "0.15.2" }
34-
bevy_transform = { path = "../bevy_transform", version = "0.15.2" }
35-
bevy_math = { path = "../bevy_math", version = "0.15.2" }
36-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
37-
bevy_window = { path = "../bevy_window", version = "0.15.2" }
25+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
26+
bevy_asset = { path = "../bevy_asset", version = "0.15.3" }
27+
bevy_core = { path = "../bevy_core", version = "0.15.3" }
28+
bevy_color = { path = "../bevy_color", version = "0.15.4" }
29+
bevy_derive = { path = "../bevy_derive", version = "0.15.3" }
30+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
31+
bevy_image = { path = "../bevy_image", version = "0.15.3" }
32+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3" }
33+
bevy_render = { path = "../bevy_render", version = "0.15.3" }
34+
bevy_transform = { path = "../bevy_transform", version = "0.15.3" }
35+
bevy_math = { path = "../bevy_math", version = "0.15.3" }
36+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
37+
bevy_window = { path = "../bevy_window", version = "0.15.3" }
3838

3939
serde = { version = "1", features = ["derive"] }
4040
bitflags = "2.3"

crates/bevy_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_derive"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Provides derive implementations for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.2" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.3" }
1616

1717
quote = "1.0"
1818
syn = { version = "2.0", features = ["full"] }

crates/bevy_dev_tools/Cargo.toml

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dev_tools"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Collection of developer tools for the Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -15,28 +15,28 @@ bevy_ui_debug = []
1515

1616
[dependencies]
1717
# bevy
18-
bevy_app = { path = "../bevy_app", version = "0.15.2" }
19-
bevy_asset = { path = "../bevy_asset", version = "0.15.2" }
20-
bevy_color = { path = "../bevy_color", version = "0.15.3" }
21-
bevy_core = { path = "../bevy_core", version = "0.15.2" }
22-
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.2" }
23-
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.2" }
24-
bevy_ecs = { path = "../bevy_ecs", version = "0.15.2" }
25-
bevy_gizmos = { path = "../bevy_gizmos", version = "0.15.2", features = [
18+
bevy_app = { path = "../bevy_app", version = "0.15.3" }
19+
bevy_asset = { path = "../bevy_asset", version = "0.15.3" }
20+
bevy_color = { path = "../bevy_color", version = "0.15.4" }
21+
bevy_core = { path = "../bevy_core", version = "0.15.3" }
22+
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.15.3" }
23+
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.15.3" }
24+
bevy_ecs = { path = "../bevy_ecs", version = "0.15.3" }
25+
bevy_gizmos = { path = "../bevy_gizmos", version = "0.15.3", features = [
2626
"bevy_render",
2727
] }
28-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.2" }
29-
bevy_input = { path = "../bevy_input", version = "0.15.2" }
30-
bevy_math = { path = "../bevy_math", version = "0.15.2" }
31-
bevy_reflect = { path = "../bevy_reflect", version = "0.15.2" }
32-
bevy_render = { path = "../bevy_render", version = "0.15.2" }
33-
bevy_time = { path = "../bevy_time", version = "0.15.2" }
34-
bevy_transform = { path = "../bevy_transform", version = "0.15.2" }
35-
bevy_text = { path = "../bevy_text", version = "0.15.2" }
36-
bevy_ui = { path = "../bevy_ui", version = "0.15.2" }
37-
bevy_utils = { path = "../bevy_utils", version = "0.15.2" }
38-
bevy_window = { path = "../bevy_window", version = "0.15.2" }
39-
bevy_state = { path = "../bevy_state", version = "0.15.2" }
28+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.3" }
29+
bevy_input = { path = "../bevy_input", version = "0.15.3" }
30+
bevy_math = { path = "../bevy_math", version = "0.15.3" }
31+
bevy_reflect = { path = "../bevy_reflect", version = "0.15.3" }
32+
bevy_render = { path = "../bevy_render", version = "0.15.3" }
33+
bevy_time = { path = "../bevy_time", version = "0.15.3" }
34+
bevy_transform = { path = "../bevy_transform", version = "0.15.3" }
35+
bevy_text = { path = "../bevy_text", version = "0.15.3" }
36+
bevy_ui = { path = "../bevy_ui", version = "0.15.3" }
37+
bevy_utils = { path = "../bevy_utils", version = "0.15.3" }
38+
bevy_window = { path = "../bevy_window", version = "0.15.3" }
39+
bevy_state = { path = "../bevy_state", version = "0.15.3" }
4040

4141
# other
4242
serde = { version = "1.0", features = ["derive"], optional = true }

0 commit comments

Comments
 (0)