From 8ba9571eedada4f3ff43cdf1402670b7fe7c280d Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Sun, 9 Jul 2023 01:43:47 -0700 Subject: [PATCH] Release 0.11.0 (#9080) I created this manually as Github didn't want to run CI for the workflow-generated PR. I'm guessing we didn't hit this in previous releases because we used bors. Co-authored-by: Bevy Auto Releaser <41898282+github-actions[bot]@users.noreply.github.com> --- 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_audio/Cargo.toml | 18 ++--- crates/bevy_core/Cargo.toml | 14 ++-- crates/bevy_core_pipeline/Cargo.toml | 22 +++---- 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 | 16 ++--- crates/bevy_gizmos/Cargo.toml | 26 ++++---- crates/bevy_gltf/Cargo.toml | 34 +++++----- crates/bevy_hierarchy/Cargo.toml | 14 ++-- crates/bevy_input/Cargo.toml | 14 ++-- 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 | 14 ++-- crates/bevy_ui/Cargo.toml | 36 +++++----- crates/bevy_utils/Cargo.toml | 4 +- crates/bevy_utils/macros/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 14 ++-- crates/bevy_winit/Cargo.toml | 22 +++---- tools/build-templated-pages/Cargo.toml | 2 +- 43 files changed, 303 insertions(+), 303 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f3f3fdc24fc0..6ccf7a3244b77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -249,8 +249,8 @@ shader_format_spirv = ["bevy_internal/shader_format_spirv"] webgl2 = ["bevy_internal/webgl"] [dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.11.0-dev", default-features = false, optional = true } -bevy_internal = { path = "crates/bevy_internal", version = "0.11.0-dev", default-features = false } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.11.0", default-features = false, optional = true } +bevy_internal = { path = "crates/bevy_internal", version = "0.11.0", default-features = false } [dev-dependencies] anyhow = "1.0.4" diff --git a/crates/bevy_a11y/Cargo.toml b/crates/bevy_a11y/Cargo.toml index 4d95f2d14450b..ca1bf641569f2 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_a11y" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides accessibility support for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,8 +10,8 @@ keywords = ["bevy", "accessibility", "a11y"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } accesskit = "0.11" diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index c888d51bb9cb7..650cc8f906a01 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,14 +10,14 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_time = { path = "../bevy_time", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 89eec840c98e4..aca9bfa71c9dc 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 995f974b1d957..ba3f082536085 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,13 +15,13 @@ debug_asset_server = ["filesystem_watcher"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other serde = { version = "1", features = ["derive"] } @@ -34,7 +34,7 @@ notify = { version = "6.0.0", optional = true } parking_lot = "0.12.1" [target.'cfg(target_os = "android")'.dependencies] -bevy_winit = { path = "../bevy_winit", version = "0.11.0-dev" } +bevy_winit = { path = "../bevy_winit", version = "0.11.0" } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } @@ -45,4 +45,4 @@ js-sys = "0.3" [dev-dependencies] futures-lite = "1.4.0" tempfile = "3.2.0" -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 1c7e918640c0e..8127d4d5be9a1 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,14 +10,14 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other anyhow = "1.0.4" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 9910209ca8987..5a6daf09d2814 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -11,12 +11,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev", features = ["bevy_reflect"] } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev", features = ["bevy_reflect"] } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0", features = ["bevy_reflect"] } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0", features = ["bevy_reflect"] } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other bytemuck = "1.5" diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index d2af8d00b1716..6da843ff3b892 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.11.0-dev" +version = "0.11.0" edition = "2021" authors = [ "Bevy Contributors ", @@ -19,16 +19,16 @@ tonemapping_luts = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0" } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } serde = { version = "1", features = ["derive"] } bitflags = "2.3" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index f0e9688f2115b..9da757fedb96a 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.11.0" } quote = "1.0" syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 461efa7819728..70d3f6baf8d8d 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_time = { path = "../bevy_time", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # MacOS [target.'cfg(all(target_os="macos"))'.dependencies] diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 286f7cf62afd0..a20a84d789707 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Force the Bevy Engine to be dynamically linked for faster linking" homepage = "https://bevyengine.org" @@ -12,4 +12,4 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.11.0-dev", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.11.0", default-features = false } diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index c735c69e2a30b..a0dc397381132 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.11.0-dev" +version = "0.11.0" 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.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } # other libloading = { version = "0.8" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 7551a987aea98..0495a83116d8d 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -15,11 +15,11 @@ multi-threaded = ["bevy_tasks/multi-threaded"] default = ["bevy_reflect", "multi-threaded"] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_ecs_macros = { path = "macros", version = "0.11.0-dev" } +bevy_ptr = { path = "../bevy_ptr", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_ecs_macros = { path = "macros", version = "0.11.0" } async-channel = "1.4" event-listener = "2.5" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 9675f10594492..880664f2d7ca0 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.11.0-dev" +version = "0.11.0" 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.11.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.11.0" } syn = "2.0" quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index be4e0096d55bf..c9ace9b8ec70d 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.11.0-dev" +version = "0.11.0" edition = "2021" description = "Bevy derive macro for encase" homepage = "https://bevyengine.org" @@ -12,5 +12,5 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.11.0-dev" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.11.0" } encase_derive_impl = "0.6.1" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 28800939fe055..70c629ab63c14 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,13 +10,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_input = { path = "../bevy_input", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_time = { path = "../bevy_time", version = "0.11.0" } # other gilrs = "0.10.1" -thiserror = "1.0" \ No newline at end of file +thiserror = "1.0" diff --git a/crates/bevy_gizmos/Cargo.toml b/crates/bevy_gizmos/Cargo.toml index aaa4f71355ad1..ce3ddc46c7351 100644 --- a/crates/bevy_gizmos/Cargo.toml +++ b/crates/bevy_gizmos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gizmos" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides gizmos for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,15 +13,15 @@ webgl = [] [dependencies] # Bevy -bevy_pbr = { path = "../bevy_pbr", version = "0.11.0-dev", optional = true } -bevy_sprite = { path = "../bevy_sprite", version = "0.11.0-dev", optional = true } -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } +bevy_pbr = { path = "../bevy_pbr", version = "0.11.0", optional = true } +bevy_sprite = { path = "../bevy_sprite", version = "0.11.0", optional = true } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 27fdbcc140e41..d2af027043a8e 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -10,22 +10,22 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.11.0-dev", optional = true } -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_pbr = { path = "../bevy_pbr", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_scene = { path = "../bevy_scene", version = "0.11.0-dev", features = ["bevy_render"] } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_animation = { path = "../bevy_animation", version = "0.11.0", optional = true } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_pbr = { path = "../bevy_pbr", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_scene = { path = "../bevy_scene", version = "0.11.0", features = ["bevy_render"] } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other gltf = { version = "1.0.0", default-features = false, features = [ diff --git a/crates/bevy_hierarchy/Cargo.toml b/crates/bevy_hierarchy/Cargo.toml index 598cb12fea004..48c081df6f22f 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides hierarchy functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,12 +13,12 @@ trace = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev", features = ["bevy_reflect"] } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0", features = ["bevy_reflect"] } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other smallvec = { version = "1.6", features = ["serde", "union", "const_generics"] } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index fd1ac27be4fed..820d7767aece5 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,15 +14,15 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["glam"] } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["glam"] } # other serde = { version = "1", features = ["derive"], optional = true } thiserror = "1.0" [dev-dependencies] -bevy = { path = "../../", version = "0.11.0-dev" } +bevy = { path = "../../", version = "0.11.0" } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 658ab05977005..4582212d3d4ce 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic_linking' feature" homepage = "https://bevyengine.org" @@ -107,36 +107,36 @@ default_font = ["bevy_text?/default_font"] [dependencies] # bevy -bevy_a11y = { path = "../bevy_a11y", version = "0.11.0-dev" } -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_ptr = { path = "../bevy_ptr", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_time = { path = "../bevy_time", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } +bevy_a11y = { path = "../bevy_a11y", version = "0.11.0" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_input = { path = "../bevy_input", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_ptr = { path = "../bevy_ptr", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_time = { path = "../bevy_time", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.11.0-dev" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.11.0-dev" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.11.0-dev" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.11.0-dev" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.11.0-dev" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.11.0-dev" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.11.0-dev" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.11.0-dev" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.11.0-dev" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.11.0-dev" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.11.0-dev" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.11.0-dev" } -bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.11.0-dev", default-features = false } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.11.0" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.11.0" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.11.0" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.11.0" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.11.0" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.11.0" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.11.0" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.11.0" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.11.0" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.11.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.11.0" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.11.0" } +bevy_gizmos = { path = "../bevy_gizmos", optional = true, version = "0.11.0", default-features = false } diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index c8100c8423fef..658b6cd02cb52 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]} tracing-chrome = { version = "0.7.0", optional = true } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 08c1d0243b96e..a191a21de1171 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.11.0-dev" +version = "0.11.0" 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 b6105f6664a26..964f2a0041d6f 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.11.0-dev" +version = "0.11.0" 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 fc5cbba391e5b..73f9307bca8ab 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" authors = ["Benjamin Wasty ", "David Harvey-Macaulay ", "Layl Bongers "] description = "Mikkelsen tangent space algorithm" diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 5d197916169ff..0fa6bd71ae1eb 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" @@ -13,17 +13,17 @@ webgl = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } # other bitflags = "2.3" diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index adf236cf34b0d..1e1e9b9de767c 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.11.0-dev" +version = "0.11.0" 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 d7b193beed930..f2ebf141b0c86 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -18,12 +18,12 @@ documentation = ["bevy_reflect_derive/documentation"] [dependencies] # bevy -bevy_math = { path = "../bevy_math", version = "0.11.0-dev", features = [ +bevy_math = { path = "../bevy_math", version = "0.11.0", features = [ "serialize", ], optional = true } -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_ptr = { path = "../bevy_ptr", version = "0.11.0-dev" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_ptr = { path = "../bevy_ptr", version = "0.11.0" } # other erased-serde = "0.3" diff --git a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml index fa6b7259dce53..9441ae52b0172 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.11.0-dev" +version = "0.11.0" 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.11.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.11.0" } 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 739208248325b..7d04a8d140d55 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -35,23 +35,23 @@ webgl = ["wgpu/webgl"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_render_macros = { path = "macros", version = "0.11.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core = { path = "../bevy_core", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_render_macros = { path = "macros", version = "0.11.0" } +bevy_time = { path = "../bevy_time", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } # 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 6f177ab2174b3..e4bd2ff08a50a 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.11.0-dev" +version = "0.11.0" 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.11.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.11.0" } syn = "2.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 86a40b7ed75a2..0eff8d91ca75c 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,15 +14,15 @@ serialize = ["dep:serde", "uuid/serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev", optional = true } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_render = { path = "../bevy_render", version = "0.11.0", 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 c3c522b10b9d4..28a19aa4b711a 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides sprite functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,19 +10,19 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = [ +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } # other bytemuck = { version = "1.5", features = ["derive"] } diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 9005800f15bd6..7b9255022c301 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.11.0-dev" +version = "0.11.0" 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 7e17ab8c5640e..35eaa696ca541 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,16 +14,16 @@ default_font = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.11.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.11.0" } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other anyhow = "1.0.4" diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 7d4743b032834..fe7c0b829e8f2 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,10 +15,10 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev", features = ["bevy_reflect"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0", features = ["bevy_reflect"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other crossbeam-channel = "0.5.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 0b426b6bf9e57..e33ea9dfe1960 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides transform functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,15 +10,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev", features = ["bevy_reflect"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = ["bevy"] } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0", features = ["bevy_reflect"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = ["bevy"] } serde = { version = "1", features = ["derive"], optional = true } [dev-dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } [features] serialize = ["dep:serde", "bevy_math/serialize"] diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 0f3bf3320f22d..d4e5de4f5357e 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.11.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.11.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = [ +bevy_a11y = { path = "../bevy_a11y", version = "0.11.0" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_asset = { path = "../bevy_asset", version = "0.11.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_input = { path = "../bevy_input", version = "0.11.0" } +bevy_log = { path = "../bevy_log", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.11.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.11.0-dev" } -bevy_text = { path = "../bevy_text", version = "0.11.0-dev", optional = true } -bevy_transform = { path = "../bevy_transform", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_render = { path = "../bevy_render", version = "0.11.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.11.0" } +bevy_text = { path = "../bevy_text", version = "0.11.0", optional = true } +bevy_transform = { path = "../bevy_transform", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # other taffy = { version = "0.3.10" } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index e423aa950c434..30f377f22f778 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.11.0-dev" +version = "0.11.0" 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"] } instant = { version = "0.1", features = ["wasm-bindgen"] } uuid = { version = "1.1", features = ["v4", "serde"] } hashbrown = { version = "0.14", features = ["serde"] } -bevy_utils_proc_macros = {version = "0.11.0-dev", path = "macros"} +bevy_utils_proc_macros = {version = "0.11.0", path = "macros"} petgraph = "0.6" thiserror = "1.0" diff --git a/crates/bevy_utils/macros/Cargo.toml b/crates/bevy_utils/macros/Cargo.toml index b6439e72b6da7..10307bbd65684 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.11.0-dev" +version = "0.11.0" 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 c65bcc6e3b97d..85ce90c849f53 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.11.0-dev" +version = "0.11.0" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,15 +14,15 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.11.0-dev", features = [ +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.11.0", features = [ "glam", ] } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } # Used for close_on_esc -bevy_input = { path = "../bevy_input", version = "0.11.0-dev" } +bevy_input = { path = "../bevy_input", version = "0.11.0" } raw-window-handle = "0.5" # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 0421993b50b26..ec881e50a1621 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.11.0-dev" +version = "0.11.0" 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.11.0-dev" } -bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.11.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.11.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.11.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.11.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } +bevy_a11y = { path = "../bevy_a11y", version = "0.11.0" } +bevy_app = { path = "../bevy_app", version = "0.11.0" } +bevy_derive = { path = "../bevy_derive", version = "0.11.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.11.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.11.0" } +bevy_input = { path = "../bevy_input", version = "0.11.0" } +bevy_math = { path = "../bevy_math", version = "0.11.0" } +bevy_window = { path = "../bevy_window", version = "0.11.0" } +bevy_utils = { path = "../bevy_utils", version = "0.11.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.11.0" } # other winit = { version = "0.28", default-features = false } diff --git a/tools/build-templated-pages/Cargo.toml b/tools/build-templated-pages/Cargo.toml index 5d0bee2a6aafa..f91ce653123dd 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.11.0-dev" +version = "0.11.0" edition = "2021" description = "handle templated pages in Bevy repository" publish = false