From aa80e2d658ed1b84787fd512839a8c84238979ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Thu, 4 Apr 2024 22:59:13 +0200 Subject: [PATCH] Release: 0.13.2 --- Cargo.toml | 6 +- crates/bevy_a11y/Cargo.toml | 8 +-- crates/bevy_animation/Cargo.toml | 24 +++---- crates/bevy_app/Cargo.toml | 12 ++-- crates/bevy_asset/Cargo.toml | 20 +++--- crates/bevy_asset/macros/Cargo.toml | 4 +- crates/bevy_audio/Cargo.toml | 18 ++--- crates/bevy_core/Cargo.toml | 14 ++-- crates/bevy_core_pipeline/Cargo.toml | 24 +++---- crates/bevy_derive/Cargo.toml | 4 +- crates/bevy_diagnostic/Cargo.toml | 14 ++-- crates/bevy_dylib/Cargo.toml | 4 +- crates/bevy_dynamic_plugin/Cargo.toml | 4 +- crates/bevy_ecs/Cargo.toml | 12 ++-- crates/bevy_ecs/macros/Cargo.toml | 4 +- crates/bevy_encase_derive/Cargo.toml | 4 +- crates/bevy_gilrs/Cargo.toml | 14 ++-- crates/bevy_gizmos/Cargo.toml | 30 ++++----- crates/bevy_gizmos/macros/Cargo.toml | 4 +- crates/bevy_gltf/Cargo.toml | 34 +++++----- crates/bevy_hierarchy/Cargo.toml | 14 ++-- crates/bevy_input/Cargo.toml | 12 ++-- crates/bevy_internal/Cargo.toml | 66 +++++++++---------- crates/bevy_log/Cargo.toml | 8 +-- crates/bevy_macro_utils/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- crates/bevy_mikktspace/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 24 +++---- crates/bevy_ptr/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 10 +-- .../bevy_reflect_derive/Cargo.toml | 4 +- crates/bevy_render/Cargo.toml | 36 +++++----- crates/bevy_render/macros/Cargo.toml | 4 +- crates/bevy_scene/Cargo.toml | 20 +++--- crates/bevy_sprite/Cargo.toml | 24 +++---- crates/bevy_tasks/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 22 +++---- crates/bevy_time/Cargo.toml | 10 +-- crates/bevy_transform/Cargo.toml | 16 ++--- crates/bevy_ui/Cargo.toml | 36 +++++----- crates/bevy_utils/Cargo.toml | 4 +- crates/bevy_utils/macros/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 16 ++--- crates/bevy_winit/Cargo.toml | 22 +++---- tools/build-templated-pages/Cargo.toml | 2 +- tools/example-showcase/Cargo.toml | 2 +- 46 files changed, 311 insertions(+), 311 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 128d98b7257ab..02ad3f23aab6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.13.1" +version = "0.13.2" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -305,8 +305,8 @@ embedded_watcher = ["bevy_internal/embedded_watcher"] bevy_debug_stepping = ["bevy_internal/bevy_debug_stepping"] [dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.13.1", default-features = false, optional = true } -bevy_internal = { path = "crates/bevy_internal", version = "0.13.1", default-features = false } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.13.2", default-features = false, optional = true } +bevy_internal = { path = "crates/bevy_internal", version = "0.13.2", default-features = false } [dev-dependencies] rand = "0.8.0" diff --git a/crates/bevy_a11y/Cargo.toml b/crates/bevy_a11y/Cargo.toml index cf215303740a4..d347dca4f64d5 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_a11y" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides accessibility support for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,9 +10,9 @@ keywords = ["bevy", "accessibility", "a11y"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } accesskit = "0.12" diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 54b17c18be9e1..5f50501836feb 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,19 +10,19 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_time = { path = "../bevy_time", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_time = { path = "../bevy_time", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } [lints] workspace = true diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 400ce52d683e3..a961f0c109adc 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -17,11 +17,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index e2c804f5c24e3..3ec43e4411118 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -18,13 +18,13 @@ asset_processor = [] watch = [] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset_macros = { path = "macros", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset_macros = { path = "macros", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } async-broadcast = "0.5" async-fs = "2.0" @@ -40,7 +40,7 @@ serde = { version = "1", features = ["derive"] } thiserror = "1.0" [target.'cfg(target_os = "android")'.dependencies] -bevy_winit = { path = "../bevy_winit", version = "0.13.1" } +bevy_winit = { path = "../bevy_winit", version = "0.13.2" } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } @@ -52,7 +52,7 @@ js-sys = "0.3" notify-debouncer-full = { version = "0.3.1", optional = true } [dev-dependencies] -bevy_core = { path = "../bevy_core", version = "0.13.1" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } [lints] workspace = true diff --git a/crates/bevy_asset/macros/Cargo.toml b/crates/bevy_asset/macros/Cargo.toml index 2a4f558e9ca3e..0916ee2f20103 100644 --- a/crates/bevy_asset/macros/Cargo.toml +++ b/crates/bevy_asset/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset_macros" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Derive implementations for bevy_asset" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 79384f00cae47..90be1347de588 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,16 +10,16 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other rodio = { version = "0.17", default-features = false } diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 06dd48a7287bc..c44b746715fc6 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -11,18 +11,18 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2", features = [ "bevy_reflect", ] } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", features = [ +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", features = [ "bevy_reflect", ] } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other bytemuck = "1.5" diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index 5e852ec148381..d22abb02d7977 100644 --- a/crates/bevy_core_pipeline/Cargo.toml +++ b/crates/bevy_core_pipeline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core_pipeline" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = [ "Bevy Contributors ", @@ -21,17 +21,17 @@ tonemapping_luts = ["bevy_render/ktx2", "bevy_render/zstd"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } serde = { version = "1", features = ["derive"] } bitflags = "2.3" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index 55ac981566e63..35a73656c4353 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides derive implementations for Bevy Engine" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.2" } quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 90d965c1603af..a9bbe826b4fe6 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,12 +14,12 @@ dynamic_linking = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_time = { path = "../bevy_time", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_time = { path = "../bevy_time", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } const-fnv1a-hash = "1.1.0" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 916623660e933..2f53987ae4fe0 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Force the Bevy Engine to be dynamically linked for faster linking" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.13.1", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.13.2", default-features = false } [lints] workspace = true diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 03626221e4d1b..1c2c4666c5ad1 100644 --- a/crates/bevy_dynamic_plugin/Cargo.toml +++ b/crates/bevy_dynamic_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dynamic_plugin" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides dynamic plugin loading capabilities for non-wasm platforms" homepage = "https://bevyengine.org" @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } # other libloading = { version = "0.8" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index fb166736e36a2..d0d77cce4de47 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -16,11 +16,11 @@ bevy_debug_stepping = [] default = ["bevy_reflect", "bevy_debug_stepping"] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_ecs_macros = { path = "macros", version = "0.13.1" } +bevy_ptr = { path = "../bevy_ptr", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_ecs_macros = { path = "macros", version = "0.13.2" } async-channel = "2.1.0" thread_local = "1.1.4" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 508520b557fa6..0985542ea5a96 100644 --- a/crates/bevy_ecs/macros/Cargo.toml +++ b/crates/bevy_ecs/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs_macros" -version = "0.13.1" +version = "0.13.2" description = "Bevy ECS Macros" edition = "2021" license = "MIT OR Apache-2.0" @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" } syn = "2.0" quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index 9377f68b3635e..e71a1e71b23aa 100644 --- a/crates/bevy_encase_derive/Cargo.toml +++ b/crates/bevy_encase_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_encase_derive" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Bevy derive macro for encase" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.2" } encase_derive_impl = "0.7" [lints] diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 036e5255de86c..3ea2a468c684d 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,12 +10,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_input = { path = "../bevy_input", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_time = { path = "../bevy_time", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_input = { path = "../bevy_input", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_time = { path = "../bevy_time", version = "0.13.2" } # other gilrs = "0.10.1" diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index e97aa7377fb10..c11e8498a8634 100644 --- a/crates/bevy_gizmos/Cargo.toml +++ b/crates/bevy_gizmos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides gizmos for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,20 +14,20 @@ webgpu = [] [dependencies] # Bevy -bevy_pbr = { path = "../bevy_pbr", version = "0.13.1", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.13.1", optional = true } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_gizmos_macros = { path = "macros", version = "0.13.1" } +bevy_pbr = { path = "../bevy_pbr", version = "0.13.2", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.13.2", optional = true } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_gizmos_macros = { path = "macros", version = "0.13.2" } [lints] workspace = true diff --git a/crates/bevy_gizmos/macros/Cargo.toml b/crates/bevy_gizmos/macros/Cargo.toml index ff7b43edeedf5..ff469e50f68e3 100644 --- a/crates/bevy_gizmos/macros/Cargo.toml +++ b/crates/bevy_gizmos/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos_macros" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Derive implementations for bevy_gizmos" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index dae6f3dbd2c7d..7715fbf379558 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -14,26 +14,26 @@ pbr_transmission_textures = [] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.13.1", optional = true } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_pbr = { path = "../bevy_pbr", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_animation = { path = "../bevy_animation", version = "0.13.2", optional = true } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_pbr = { path = "../bevy_pbr", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_scene = { path = "../bevy_scene", version = "0.13.1", features = [ +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_scene = { path = "../bevy_scene", version = "0.13.2", features = [ "bevy_render", ] } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other gltf = { version = "1.4.0", default-features = false, features = [ diff --git a/crates/bevy_hierarchy/Cargo.toml b/crates/bevy_hierarchy/Cargo.toml index 9b145dfd070d1..f1dcbe8e4b452 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides hierarchy functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,14 +16,14 @@ reflect = ["bevy_ecs/bevy_reflect", "bevy_reflect"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1", optional = true } -bevy_core = { path = "../bevy_core", version = "0.13.1", optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", default-features = false } -bevy_log = { path = "../bevy_log", version = "0.13.1", optional = true } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2", optional = true } +bevy_core = { path = "../bevy_core", version = "0.13.2", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", default-features = false } +bevy_log = { path = "../bevy_log", version = "0.13.2", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } [lints] workspace = true diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index bdbff9f59e5f8..62f96dfabcac4 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,11 +14,11 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "glam", "smol_str", ] } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index bff8bc17dac56..7ee293ee7b35c 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature" homepage = "https://bevyengine.org" @@ -162,41 +162,41 @@ bevy_debug_stepping = [ [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.13.1" } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_input = { path = "../bevy_input", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_ptr = { path = "../bevy_ptr", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.13.2" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_input = { path = "../bevy_input", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_ptr = { path = "../bevy_ptr", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_time = { path = "../bevy_time", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } +bevy_time = { path = "../bevy_time", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.13.1" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.13.1" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.13.1" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.13.1" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.13.1" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.13.1" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.13.1" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.13.1" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.13.1" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.13.1" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.13.1" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.13.1" } -bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.13.1", default-features = false } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.13.2" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.13.2" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.13.2" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.13.2" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.13.2" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.13.2" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.13.2" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.13.2" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.13.2" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.13.2" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.13.2" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.13.2" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.13.2", default-features = false } [lints] workspace = true diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 870feda633e87..8e97cd921b58f 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,9 +13,9 @@ trace = ["tracing-error"] trace_tracy_memory = ["dep:tracy-client"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } tracing-subscriber = { version = "0.3.1", features = [ "registry", diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index fe5c524ac75a5..d02db5ee2a8c9 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_macro_utils" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 15d6fb3557f0c..fd55dfce09c52 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides math functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index 81bd903b2871f..871ea3790c787 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = [ "Benjamin Wasty ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 1050a51b5fed0..cdb8dd1b4c572 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" @@ -15,19 +15,19 @@ pbr_transmission_textures = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } # other bitflags = "2.3" diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index c3f71b116aa05..8de659010b0bc 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Utilities for working with untyped pointers in a more safe way" homepage = "https://bevyengine.org" diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index e39dce3fa6051..0f8276cd14a19 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -21,12 +21,12 @@ documentation = ["bevy_reflect_derive/documentation"] [dependencies] # bevy -bevy_math = { path = "../bevy_math", version = "0.13.1", features = [ +bevy_math = { path = "../bevy_math", version = "0.13.2", features = [ "serialize", ], optional = true } -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_ptr = { path = "../bevy_ptr", version = "0.13.1" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_ptr = { path = "../bevy_ptr", version = "0.13.2" } # other erased-serde = "0.4" diff --git a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml index 35b71a8c10a97..8a0cbf75f0101 100644 --- a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml +++ b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect_derive" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Derive implementations for bevy_reflect" homepage = "https://bevyengine.org" @@ -17,7 +17,7 @@ default = [] documentation = [] [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" } syn = { version = "2.0", features = ["full"] } proc-macro2 = "1.0" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 6774514b2d321..fb1786ac3e40a 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -37,25 +37,25 @@ webgpu = ["wgpu/webgpu"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core = { path = "../bevy_core", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core = { path = "../bevy_core", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render_macros = { path = "macros", version = "0.13.1" } -bevy_time = { path = "../bevy_time", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } +bevy_render_macros = { path = "macros", version = "0.13.2" } +bevy_time = { path = "../bevy_time", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } # rendering image = { version = "0.24", default-features = false } diff --git a/crates/bevy_render/macros/Cargo.toml b/crates/bevy_render/macros/Cargo.toml index f8abea453fc68..d882e71c8ad03 100644 --- a/crates/bevy_render/macros/Cargo.toml +++ b/crates/bevy_render/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render_macros" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Derive implementations for bevy_render" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index bbc9350dce368..d74cd67b3e9e4 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,17 +14,17 @@ serialize = ["dep:serde", "uuid/serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_render = { path = "../bevy_render", version = "0.13.1", optional = true } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_render = { path = "../bevy_render", version = "0.13.2", optional = true } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 1d1c0dc06ab29..7368bcd6fd785 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides sprite functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,19 +14,19 @@ webgpu = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } # other bytemuck = { version = "1.5", features = ["derive"] } diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index cb09d23bce513..48d25d243cd6f 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "A task executor for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 54e11a4b757f2..c1a81ff9ac130 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,18 +14,18 @@ default_font = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_sprite = { path = "../bevy_sprite", version = "0.13.1" } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_sprite = { path = "../bevy_sprite", version = "0.13.2" } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other ab_glyph = "0.2.6" diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 0e7cae1ecb65f..42d86f113d3e7 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,14 +15,14 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", features = [ "bevy_reflect", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other crossbeam-channel = "0.5.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 2cb7b5feb9138..b72d515642bba 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides transform functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,21 +10,21 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", features = [ +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", features = [ "bevy_reflect", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } serde = { version = "1", features = ["derive"], optional = true } thiserror = "1.0" [dev-dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1", features = ["approx"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2", features = ["approx"] } approx = "0.5.1" [features] diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 64b2e397ac7d5..21b0f66af29bd 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,25 +10,25 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.13.1" } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_asset = { path = "../bevy_asset", version = "0.13.1" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_input = { path = "../bevy_input", version = "0.13.1" } -bevy_log = { path = "../bevy_log", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.13.2" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_asset = { path = "../bevy_asset", version = "0.13.2" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_input = { path = "../bevy_input", version = "0.13.2" } +bevy_log = { path = "../bevy_log", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.13.1" } -bevy_sprite = { path = "../bevy_sprite", version = "0.13.1" } -bevy_text = { path = "../bevy_text", version = "0.13.1", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_render = { path = "../bevy_render", version = "0.13.2" } +bevy_sprite = { path = "../bevy_sprite", version = "0.13.2" } +bevy_text = { path = "../bevy_text", version = "0.13.2", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # other taffy = { version = "0.3.10" } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index e94307e96738f..4b9ac5ff6c19a 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -17,7 +17,7 @@ tracing = { version = "0.1", default-features = false, features = ["std"] } web-time = { version = "0.2" } uuid = { version = "1.1", features = ["v4", "serde"] } hashbrown = { version = "0.14", features = ["serde"] } -bevy_utils_proc_macros = { version = "0.13.1", path = "macros" } +bevy_utils_proc_macros = { version = "0.13.2", path = "macros" } petgraph = "0.6" thiserror = "1.0" nonmax = "0.5" diff --git a/crates/bevy_utils/macros/Cargo.toml b/crates/bevy_utils/macros/Cargo.toml index d10a2cd081a6f..5c74e23d2b6d5 100644 --- a/crates/bevy_utils/macros/Cargo.toml +++ b/crates/bevy_utils/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils_proc_macros" -version = "0.13.1" +version = "0.13.2" description = "Bevy Utils Proc Macros" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index dd2bc3a93d3a6..629c61804682f 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,16 +14,16 @@ serialize = ["serde", "smol_str/serde"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.13.1" } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.13.2" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [ "glam", ] } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } # Used for close_on_esc -bevy_input = { path = "../bevy_input", version = "0.13.1" } +bevy_input = { path = "../bevy_input", version = "0.13.2" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 5574b67438d71..b6712643b3fc6 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,16 +16,16 @@ accesskit_unix = ["accesskit_winit/accesskit_unix", "accesskit_winit/async-io"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.13.1" } -bevy_app = { path = "../bevy_app", version = "0.13.1" } -bevy_derive = { path = "../bevy_derive", version = "0.13.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" } -bevy_input = { path = "../bevy_input", version = "0.13.1" } -bevy_math = { path = "../bevy_math", version = "0.13.1" } -bevy_window = { path = "../bevy_window", version = "0.13.1" } -bevy_utils = { path = "../bevy_utils", version = "0.13.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" } +bevy_a11y = { path = "../bevy_a11y", version = "0.13.2" } +bevy_app = { path = "../bevy_app", version = "0.13.2" } +bevy_derive = { path = "../bevy_derive", version = "0.13.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" } +bevy_input = { path = "../bevy_input", version = "0.13.2" } +bevy_math = { path = "../bevy_math", version = "0.13.2" } +bevy_window = { path = "../bevy_window", version = "0.13.2" } +bevy_utils = { path = "../bevy_utils", version = "0.13.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" } # other # feature rwh_06 refers to window_raw_handle@v0.6 diff --git a/tools/build-templated-pages/Cargo.toml b/tools/build-templated-pages/Cargo.toml index 016225d109f5c..7fcb7bafab2a7 100644 --- a/tools/build-templated-pages/Cargo.toml +++ b/tools/build-templated-pages/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "build-templated-pages" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "handle templated pages in Bevy repository" publish = false diff --git a/tools/example-showcase/Cargo.toml b/tools/example-showcase/Cargo.toml index 9031735733c46..1e49fa600552a 100644 --- a/tools/example-showcase/Cargo.toml +++ b/tools/example-showcase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "example-showcase" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "Run examples" publish = false