From f4e81232c5664d4cc5a1558af565bc56bfae97eb Mon Sep 17 00:00:00 2001 From: makspll Date: Sat, 29 Mar 2025 22:47:24 +0000 Subject: [PATCH] feat: bump bevy to 0.15.3 --- Cargo.toml | 2 +- crates/bevy_api_gen/Cargo.bootstrap.toml | 2 +- crates/ladfile_builder/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 767c2ee7cc..3b343a1284 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ bevy_mod_scripting_derive = { workspace = true } [workspace.dependencies] profiling = { version = "1.0" } -bevy = { version = "0.15.2", default-features = false } +bevy = { version = "0.15.3", default-features = false } bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.11.0" } bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.11.0", default-features = false } bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.11.0" } diff --git a/crates/bevy_api_gen/Cargo.bootstrap.toml b/crates/bevy_api_gen/Cargo.bootstrap.toml index c963caddb8..d34f8c99eb 100644 --- a/crates/bevy_api_gen/Cargo.bootstrap.toml +++ b/crates/bevy_api_gen/Cargo.bootstrap.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] bevy_mod_scripting_core = { path = "{{BMS_CORE_PATH}}" } -bevy_reflect = { version = "0.15.2", features = [ +bevy_reflect = { version = "0.15.3", features = [ "bevy", "glam", "petgraph", diff --git a/crates/ladfile_builder/Cargo.toml b/crates/ladfile_builder/Cargo.toml index 2bc36b0be8..fba0d9958c 100644 --- a/crates/ladfile_builder/Cargo.toml +++ b/crates/ladfile_builder/Cargo.toml @@ -16,7 +16,7 @@ readme = "readme.md" bevy_mod_scripting_core = { workspace = true } # I don't think bevy has a top level feature for this :C bevy = { workspace = true } -bevy_reflect = { version = "0.15.2", features = ["documentation"] } +bevy_reflect = { version = "0.15.3", features = ["documentation"] } ladfile = { version = "0.5.0", path = "../ladfile" } regex = "1.11"