diff --git a/Cargo.toml b/Cargo.toml index 6e0f45a648..db60033ec1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -339,11 +339,11 @@ ios_simulator = ["bevy_internal/ios_simulator"] bevy_state = ["bevy_internal/bevy_state"] [dependencies] -bevy_internal = { path = "crates/bevy_internal", version = "0.14.0-rc.2", default-features = false } +bevy_internal = { path = "crates/bevy_internal", version = "0.14.0-rc.3", default-features = false } # WASM does not support dynamic linking. [target.'cfg(not(target_family = "wasm"))'.dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.14.0-rc.2", default-features = false, optional = true } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.14.0-rc.3", default-features = false, optional = true } [dev-dependencies] rand = "0.8.0" diff --git a/crates/bevy_a11y/Cargo.toml b/crates/bevy_a11y/Cargo.toml index df590cbe77..183d42ab32 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_a11y" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } accesskit = "0.14" diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 2bead5c527..8e1fe1f17e 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,23 +10,23 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", "petgraph", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } # other fixedbitset = "0.5" diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index a8fed9f29f..10beb58785 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,11 +16,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } # other downcast-rs = "1.2.0" diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 05433dd9bf..3282064187 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -19,14 +19,14 @@ watch = [] trace = [] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset_macros = { path = "macros", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset_macros = { path = "macros", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "uuid", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } async-broadcast = "0.5" async-fs = "2.0" @@ -43,7 +43,7 @@ thiserror = "1.0" uuid = { version = "1.0", features = ["v4"] } [target.'cfg(target_os = "android")'.dependencies] -bevy_winit = { path = "../bevy_winit", version = "0.14.0-rc.2" } +bevy_winit = { path = "../bevy_winit", version = "0.14.0-rc.3" } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } @@ -59,8 +59,8 @@ js-sys = "0.3" notify-debouncer-full = { version = "0.3.1", optional = true } [dev-dependencies] -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.14.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_asset/macros/Cargo.toml b/crates/bevy_asset/macros/Cargo.toml index ac0b99d573..54a4375e11 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index a4adb367e4..6b678eb219 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,17 +10,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other rodio = { version = "0.18", default-features = false } diff --git a/crates/bevy_color/Cargo.toml b/crates/bevy_color/Cargo.toml index dbd13c0bd9..f5a75dd4c4 100644 --- a/crates/bevy_color/Cargo.toml +++ b/crates/bevy_color/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_color" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Types for representing and manipulating color values" homepage = "https://bevyengine.org" @@ -10,8 +10,8 @@ keywords = ["bevy", "color"] rust-version = "1.76.0" [dependencies] -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } bytemuck = { version = "1", features = ["derive"] } diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 48cc66ef53..347cfbb67c 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,17 +10,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3", features = [ "bevy_reflect", ] } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", features = [ +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3", features = [ "bevy_reflect", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other serde = { version = "1.0", optional = true } diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index 4af2321f2b..93a88c065d 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } serde = { version = "1", features = ["derive"] } bitflags = "2.3" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index d1427177b0..4fe2df5a04 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.0-rc.3" } quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_dev_tools/Cargo.toml b/crates/bevy_dev_tools/Cargo.toml index c1bb3fb902..a42b25205c 100644 --- a/crates/bevy_dev_tools/Cargo.toml +++ b/crates/bevy_dev_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dev_tools" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Collection of developer tools for the Bevy Engine" homepage = "https://bevyengine.org" @@ -15,28 +15,28 @@ bevy_ui_debug = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_ui = { path = "../bevy_ui", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_ui = { path = "../bevy_ui", version = "0.14.0-rc.3", features = [ "bevy_text", ] } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.14.0-rc.2" } -bevy_state = { path = "../bevy_state", version = "0.14.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.14.0-rc.3" } +bevy_state = { path = "../bevy_state", version = "0.14.0-rc.3" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 3e16d31d8d..250d93fef3 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,12 +15,12 @@ sysinfo_plugin = ["sysinfo"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } const-fnv1a-hash = "1.1.0" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 9ad7befbd1..dbe9f5292b 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.14.0-rc.3", default-features = false } [lints] workspace = true diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 3f22948fe9..8da0eeb121 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } # other libloading = { version = "0.8" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 7829b002cd..3c72eded39 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -18,11 +18,11 @@ default = ["bevy_reflect"] serialize = ["dep:serde"] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_ecs_macros = { path = "macros", version = "0.14.0-rc.2" } +bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_ecs_macros = { path = "macros", version = "0.14.0-rc.3" } petgraph = "0.6" bitflags = "2.3" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index bb36da1cee..ef941dcb54 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } syn = { version = "2.0", features = ["full"] } quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index 75f913668c..79f12dce13 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.0-rc.3" } encase_derive_impl = "0.8" [lints] diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 2d2f2bbbbd..befe5175fa 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,11 +10,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } # other gilrs = "0.10.1" diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index a112dc2e0f..696e03df34 100644 --- a/crates/bevy_gizmos/Cargo.toml +++ b/crates/bevy_gizmos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_gizmos_macros = { path = "macros", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } +bevy_pbr = { path = "../bevy_pbr", version = "0.14.0-rc.3", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_gizmos_macros = { path = "macros", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } bytemuck = "1.0" diff --git a/crates/bevy_gizmos/macros/Cargo.toml b/crates/bevy_gizmos/macros/Cargo.toml index 76d1730bdb..2a8e57331b 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.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Derive implementations for bevy_gizmos" homepage = "https://bevyengine.org" @@ -13,7 +13,7 @@ proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 8d3e61b5ae..09e329d963 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -15,26 +15,26 @@ pbr_multi_layer_material_textures = [] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.14.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_pbr = { path = "../bevy_pbr", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_animation = { path = "../bevy_animation", version = "0.14.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_pbr = { path = "../bevy_pbr", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_scene = { path = "../bevy_scene", version = "0.14.0-rc.2", features = [ +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_scene = { path = "../bevy_scene", version = "0.14.0-rc.3", features = [ "bevy_render", ] } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # 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 8ff536ee36..526aadffad 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2", optional = true } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2", optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3", optional = true } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", "smallvec", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } smallvec = { version = "1.11", features = ["union", "const_generics"] } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 1149c8e2dc..2b24e53fea 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "glam", "smol_str", ] } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index dc79fd116f..54f637b0a2 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature" homepage = "https://bevyengine.org" @@ -188,44 +188,44 @@ bevy_state = ["dep:bevy_state"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_state = { path = "../bevy_state", optional = true, version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.14.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_state = { path = "../bevy_state", optional = true, version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.14.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.14.0-rc.2" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", optional = true, version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.14.0-rc.2" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.14.0-rc.2" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.14.0-rc.2" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.14.0-rc.2" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.14.0-rc.2" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.14.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.14.0-rc.2" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.14.0-rc.2" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.14.0-rc.2" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.14.0-rc.2" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.14.0-rc.2" } -bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.14.0-rc.2", default-features = false } -bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.14.0-rc.2" } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.14.0-rc.3" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", optional = true, version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.14.0-rc.3" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.14.0-rc.3" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.14.0-rc.3" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.14.0-rc.3" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.14.0-rc.3" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.14.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.14.0-rc.3" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.14.0-rc.3" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.14.0-rc.3" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.14.0-rc.3" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.14.0-rc.3" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.14.0-rc.3", default-features = false } +bevy_dev_tools = { path = "../bevy_dev_tools", optional = true, version = "0.14.0-rc.3" } [lints] workspace = true diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 170bf62949..e670422834 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } 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 6d5b336b86..0144fd4c6d 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.14.0-rc.2" +version = "0.14.0-rc.3" 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 cfff1ea3c7..ca8a18b370 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides math functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -20,7 +20,7 @@ rand = { version = "0.8", features = [ ], default-features = false, optional = true } smallvec = { version = "1.11" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "glam", ], optional = true } @@ -30,7 +30,7 @@ approx = "0.5" rand = "0.8" rand_chacha = "0.3" # Enable the approx feature when testing. -bevy_math = { path = ".", version = "0.14.0-rc.2", features = ["approx"] } +bevy_math = { path = ".", version = "0.14.0-rc.3", features = ["approx"] } glam = { version = "0.27", features = ["approx"] } diff --git a/crates/bevy_mikktspace/Cargo.toml b/crates/bevy_mikktspace/Cargo.toml index e1e12ab35f..5a575531c1 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" authors = [ "Benjamin Wasty ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index d2d9f7ae20..a1feef9720 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" @@ -29,20 +29,20 @@ meshlet_processor = ["meshlet", "dep:meshopt", "dep:metis", "dep:itertools"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } # other diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index b3f694f795..fb748f520b 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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 3600fde29f..08c8c6b0bf 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -22,9 +22,9 @@ documentation = ["bevy_reflect_derive/documentation"] [dependencies] # bevy -bevy_reflect_derive = { path = "derive", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.2" } +bevy_reflect_derive = { path = "derive", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_ptr = { path = "../bevy_ptr", version = "0.14.0-rc.3" } # other erased-serde = "0.4" diff --git a/crates/bevy_reflect/derive/Cargo.toml b/crates/bevy_reflect/derive/Cargo.toml index e72e6462e9..5da78debcb 100644 --- a/crates/bevy_reflect/derive/Cargo.toml +++ b/crates/bevy_reflect/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect_derive" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } 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 7de77d9662..eea9c20f07 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -37,29 +37,29 @@ ios_simulator = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3", features = [ "serialize", "wgpu-types", ] } -bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_core = { path = "../bevy_core", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render_macros = { path = "macros", version = "0.14.0-rc.2" } -bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } +bevy_render_macros = { path = "macros", version = "0.14.0-rc.3" } +bevy_time = { path = "../bevy_time", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } # rendering image = { version = "0.25", default-features = false } diff --git a/crates/bevy_render/macros/Cargo.toml b/crates/bevy_render/macros/Cargo.toml index fc9b489fd6..1b7ee96f4f 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.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 8c0cd3c108..df1503ce72 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,17 +14,17 @@ serialize = ["dep:serde", "uuid/serde", "bevy_ecs/serialize"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2", optional = true } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3", 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 8b5a20aac4..b60bdf18f1 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } # other bytemuck = { version = "1.5", features = ["derive"] } diff --git a/crates/bevy_state/Cargo.toml b/crates/bevy_state/Cargo.toml index 4ec48a39c2..38875e7af8 100644 --- a/crates/bevy_state/Cargo.toml +++ b/crates/bevy_state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_state" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Finite state machines for Bevy" homepage = "https://bevyengine.org" @@ -17,12 +17,12 @@ bevy_app = ["dep:bevy_app"] bevy_hierarchy = ["dep:bevy_hierarchy"] [dependencies] -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_state_macros = { path = "macros", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", optional = true } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2", optional = true } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_state_macros = { path = "macros", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", optional = true } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3", optional = true } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3", optional = true } [lints] workspace = true diff --git a/crates/bevy_state/macros/Cargo.toml b/crates/bevy_state/macros/Cargo.toml index b36d04fab6..7bfe86f9e0 100644 --- a/crates/bevy_state/macros/Cargo.toml +++ b/crates/bevy_state/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_state_macros" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" description = "Macros for bevy_state" 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.14.0-rc.2" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.3" } syn = { version = "2.0", features = ["full"] } quote = "1.0" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 48abd5f668..a4d280952e 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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 18c7f2fb09..cb28ad7fa6 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,19 +14,19 @@ default_font = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.2" } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.3" } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other ab_glyph = "0.2.6" diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 0da187ad4f..ce18c3b012 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,14 +14,14 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3", features = [ "bevy_reflect", ] } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ], optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other crossbeam-channel = "0.5.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 34a106bc85..bfade3adc8 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2", optional = true } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", features = [ +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3", optional = true } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3", features = [ "bevy_reflect", ], optional = true } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2", optional = true } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3", optional = true } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ], optional = true } serde = { version = "1", features = ["derive"], optional = true } thiserror = "1.0" [dev-dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2", default-features = false, features = [ +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3", default-features = false, features = [ "approx", ] } approx = "0.5.1" diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 30f5e697a8..79ecc215a6 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" 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.14.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" } -bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.3" } +bevy_color = { path = "../bevy_color", version = "0.14.0-rc.3" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" } -bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.2" } -bevy_text = { path = "../bevy_text", version = "0.14.0-rc.2", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_render = { path = "../bevy_render", version = "0.14.0-rc.3" } +bevy_sprite = { path = "../bevy_sprite", version = "0.14.0-rc.3" } +bevy_text = { path = "../bevy_text", version = "0.14.0-rc.3", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other taffy = { version = "0.5" } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 1a17ff2b6e..aae4be9915 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,7 +16,7 @@ ahash = "0.8.7" tracing = { version = "0.1", default-features = false, features = ["std"] } web-time = { version = "1.1" } hashbrown = { version = "0.14", features = ["serde"] } -bevy_utils_proc_macros = { version = "0.14.0-rc.2", path = "macros" } +bevy_utils_proc_macros = { version = "0.14.0-rc.3", path = "macros" } thread_local = "1.0" [dev-dependencies] diff --git a/crates/bevy_utils/macros/Cargo.toml b/crates/bevy_utils/macros/Cargo.toml index a00b69a39c..548f1c29e5 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.14.0-rc.2" +version = "0.14.0-rc.3" 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 0194fc7ab5..b0cc280d1a 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,15 +14,15 @@ serialize = ["serde", "smol_str/serde"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3", features = [ "glam", "smol_str", ] } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 5e396304e4..412e138836 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.14.0-rc.2" +version = "0.14.0-rc.3" edition = "2021" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" @@ -17,18 +17,18 @@ serialize = ["serde"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.2" } -bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" } -bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" } -bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" } -bevy_input = { path = "../bevy_input", version = "0.14.0-rc.2" } -bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" } -bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" } -bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2" } -bevy_window = { path = "../bevy_window", version = "0.14.0-rc.2" } -bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" } -bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" } +bevy_a11y = { path = "../bevy_a11y", version = "0.14.0-rc.3" } +bevy_app = { path = "../bevy_app", version = "0.14.0-rc.3" } +bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.3" } +bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.3" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.3" } +bevy_input = { path = "../bevy_input", version = "0.14.0-rc.3" } +bevy_log = { path = "../bevy_log", version = "0.14.0-rc.3" } +bevy_math = { path = "../bevy_math", version = "0.14.0-rc.3" } +bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.3" } +bevy_window = { path = "../bevy_window", version = "0.14.0-rc.3" } +bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.3" } +bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.3" } # other # feature rwh_06 refers to window_raw_handle@v0.6