From 83c6ffb73c4a91182cda10141f824987ef3fba2f Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Fri, 15 Apr 2022 18:05:37 +0000 Subject: [PATCH] release 0.7.0 (#4487) --- Cargo.toml | 8 +-- crates/bevy_animation/Cargo.toml | 20 +++---- crates/bevy_app/Cargo.toml | 12 ++-- crates/bevy_asset/Cargo.toml | 18 +++--- crates/bevy_audio/Cargo.toml | 14 ++--- crates/bevy_core/Cargo.toml | 16 ++--- crates/bevy_core_pipeline/Cargo.toml | 14 ++--- crates/bevy_crevice/Cargo.toml | 4 +- .../bevy-crevice-derive/Cargo.toml | 4 +- crates/bevy_derive/Cargo.toml | 4 +- crates/bevy_diagnostic/Cargo.toml | 12 ++-- crates/bevy_dylib/Cargo.toml | 4 +- crates/bevy_dynamic_plugin/Cargo.toml | 4 +- crates/bevy_ecs/Cargo.toml | 10 ++-- crates/bevy_ecs/macros/Cargo.toml | 4 +- crates/bevy_ecs_compile_fail_tests/Cargo.toml | 4 +- crates/bevy_gilrs/Cargo.toml | 10 ++-- crates/bevy_gltf/Cargo.toml | 30 +++++----- crates/bevy_hierarchy/Cargo.toml | 10 ++-- crates/bevy_input/Cargo.toml | 10 ++-- crates/bevy_internal/Cargo.toml | 58 +++++++++---------- crates/bevy_log/Cargo.toml | 8 +-- crates/bevy_macro_utils/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 4 +- crates/bevy_pbr/Cargo.toml | 24 ++++---- crates/bevy_reflect/Cargo.toml | 6 +- .../bevy_reflect_derive/Cargo.toml | 4 +- crates/bevy_render/Cargo.toml | 24 ++++---- crates/bevy_scene/Cargo.toml | 14 ++--- crates/bevy_sprite/Cargo.toml | 24 ++++---- crates/bevy_tasks/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 24 ++++---- crates/bevy_transform/Cargo.toml | 12 ++-- crates/bevy_ui/Cargo.toml | 36 ++++++------ crates/bevy_utils/Cargo.toml | 4 +- crates/bevy_window/Cargo.toml | 10 ++-- crates/bevy_winit/Cargo.toml | 14 ++--- tools/publish.sh | 6 +- 38 files changed, 245 insertions(+), 243 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8ed279b5675fe..d4f4fe3361eb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -104,11 +104,11 @@ debug_asset_server = ["bevy_internal/debug_asset_server"] animation = ["bevy_internal/animation"] [dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.7.0-dev", default-features = false, optional = true } -bevy_internal = { path = "crates/bevy_internal", version = "0.7.0-dev", default-features = false } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.7.0", default-features = false, optional = true } +bevy_internal = { path = "crates/bevy_internal", version = "0.7.0", default-features = false } [target.'cfg(target_arch = "wasm32")'.dependencies] -bevy_internal = { path = "crates/bevy_internal", version = "0.7.0-dev", default-features = false, features = [ +bevy_internal = { path = "crates/bevy_internal", version = "0.7.0", default-features = false, features = [ "webgl", ] } diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 223e90e61969f..8dc436fcf9135 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,12 +10,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0" } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 1dc35210e4671..4ea5d58d99423 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -15,10 +15,10 @@ default = ["bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other serde = { version = "1.0", features = ["derive"], optional = true } @@ -31,4 +31,4 @@ web-sys = { version = "0.3", features = [ "Window" ] } [dev-dependencies] # bevy -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 02f0e589eca3e..b6805f435d15a 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.7.0-dev" +version = "0.7.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.7.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other serde = { version = "1", features = ["derive"] } @@ -45,4 +45,4 @@ ndk-glue = { version = "0.5" } [dev-dependencies] futures-lite = "1.4.0" tempfile = "3.2.0" -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index dd26c94f2bd35..f2699d5eb167a 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,11 +10,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other anyhow = "1.0.4" @@ -26,7 +26,7 @@ rodio = { version = "0.15", default-features = false, features = ["wasm-bindgen" [dev-dependencies] # bevy -bevy_internal = { path = "../bevy_internal", version = "0.7.0-dev" } +bevy_internal = { path = "../bevy_internal", version = "0.7.0" } [features] mp3 = ["rodio/mp3"] diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 74c02c3b44e06..88920f8a55561 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -11,13 +11,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev", features = ["bevy_reflect"] } -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev", features = ["bevy_reflect"] } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0", features = ["bevy_reflect"] } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0", features = ["bevy_reflect"] } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other bytemuck = "1.5" diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index 4b8b862820460..d15753425ea99 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.7.0-dev" +version = "0.7.0" edition = "2021" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ trace = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } diff --git a/crates/bevy_crevice/Cargo.toml b/crates/bevy_crevice/Cargo.toml index c3cb334f53b86..fff5f334d8769 100644 --- a/crates/bevy_crevice/Cargo.toml +++ b/crates/bevy_crevice/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_crevice" description = "Create GLSL-compatible versions of structs with explicitly-initialized padding (Bevy version)" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" authors = ["Lucien Greathouse "] documentation = "https://docs.rs/crevice" @@ -23,7 +23,7 @@ std = [] # default-members = ["crevice-derive", "crevice-tests"] [dependencies] -bevy-crevice-derive = { version = "0.7.0-dev", path = "bevy-crevice-derive" } +bevy-crevice-derive = { version = "0.7.0", path = "bevy-crevice-derive" } bytemuck = "1.4.1" mint = "0.5.8" diff --git a/crates/bevy_crevice/bevy-crevice-derive/Cargo.toml b/crates/bevy_crevice/bevy-crevice-derive/Cargo.toml index ae0d5db17dabf..23bc48972f94d 100644 --- a/crates/bevy_crevice/bevy-crevice-derive/Cargo.toml +++ b/crates/bevy_crevice/bevy-crevice-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy-crevice-derive" description = "Derive crate for the 'crevice' crate (Bevy version)" -version = "0.7.0-dev" +version = "0.7.0" edition = "2018" authors = ["Lucien Greathouse "] documentation = "https://docs.rs/crevice-derive" @@ -24,4 +24,4 @@ proc-macro = true syn = "1.0.40" quote = "1.0.7" proc-macro2 = "1.0.21" -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0" } diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index a269eb437456b..4597888f7a080 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.7.0-dev" +version = "0.7.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.7.0-dev" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.7.0" } quote = "1.0" syn = "1.0" diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index fd07f4e273d6c..cbe1317b1d1cc 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -11,8 +11,8 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 173da74f67f91..6813d6f297b37 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.7.0-dev" +version = "0.7.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.7.0-dev", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.7.0", default-features = false } diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 9a3bf48b35eea..d2bf747262bb7 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.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides dynamic plugin loading capabilities for non-wasm platforms" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } # other libloading = { version = "0.7" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 93f5fc1e5d76b..6681377e52f00 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -14,10 +14,10 @@ trace = [] default = ["bevy_reflect"] [dependencies] -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } -bevy_ecs_macros = { path = "macros", version = "0.7.0-dev" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } +bevy_ecs_macros = { path = "macros", version = "0.7.0" } async-channel = "1.4" fixedbitset = "0.4" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index d864138723c7d..8c8b2c5646946 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.7.0-dev" +version = "0.7.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.7.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0" } syn = "1.0" quote = "1.0" diff --git a/crates/bevy_ecs_compile_fail_tests/Cargo.toml b/crates/bevy_ecs_compile_fail_tests/Cargo.toml index 4c555764798a1..e82baccb2baf6 100644 --- a/crates/bevy_ecs_compile_fail_tests/Cargo.toml +++ b/crates/bevy_ecs_compile_fail_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs_compile_fail_tests" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Compile fail tests for Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -9,5 +9,5 @@ license = "MIT OR Apache-2.0" publish = false [dev-dependencies] -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } trybuild = "1.0" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 9516c96f4cd9a..53092af6627c9 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,10 +10,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_input = { path = "../bevy_input", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other gilrs = { version = "0.8.0", features = ["wasm-bindgen"] } diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 13c0da7038928..348c98dc54a0e 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" @@ -10,20 +10,20 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_animation = { path = "../bevy_animation", version = "0.7.0-dev", optional = true } -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_pbr = { path = "../bevy_pbr", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_scene = { path = "../bevy_scene", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_animation = { path = "../bevy_animation", version = "0.7.0", optional = true } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_pbr = { path = "../bevy_pbr", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_scene = { path = "../bevy_scene", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.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 8e6236f373b47..05565001316ca 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides hierarchy functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,10 +13,10 @@ trace = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev", features = ["bevy_reflect"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0", features = ["bevy_reflect"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.7.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 f50f9093a87f2..6ee8be7b09f5f 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,10 +14,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 4c99604538b27..9860d213adcb0 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic' feature" homepage = "https://bevyengine.org" @@ -65,35 +65,35 @@ animation = ["bevy_animation", "bevy_gltf/bevy_animation"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_scene = { path = "../bevy_scene", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0" } +bevy_input = { path = "../bevy_input", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_scene = { path = "../bevy_scene", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.7.0-dev" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.7.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.7.0-dev" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.7.0-dev" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.7.0-dev" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.7.0-dev" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.7.0-dev" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.7.0-dev" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.7.0-dev" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.7.0-dev" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.7.0-dev" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.7.0-dev" } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.7.0" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.7.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.7.0" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.7.0" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.7.0" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.7.0" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.7.0" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.7.0" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.7.0" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.7.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.7.0" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.7.0" } [target.'cfg(target_os = "android")'.dependencies] ndk-glue = {version = "0.5", features = ["logger"]} diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index a149e98afe0b4..a1e700dd4d863 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" @@ -12,8 +12,8 @@ keywords = ["bevy"] trace = [ "tracing-error" ] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]} tracing-chrome = { version = "0.4.0", optional = true } @@ -29,4 +29,4 @@ console_error_panic_hook = "0.1.6" tracing-wasm = "0.2.1" [dev-dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.7.0-dev" } +bevy_internal = { path = "../bevy_internal", version = "0.7.0" } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 8530069276c78..2af15f65d4672 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.7.0-dev" +version = "0.7.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 47d3725041c0e..d392d38459f88 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides math functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,4 +10,4 @@ keywords = ["bevy"] [dependencies] glam = { version = "0.20.0", features = ["serde", "bytemuck"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 04f01ab963f6e..c079fa55092a9 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.7.0-dev" +version = "0.7.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.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } # other bitflags = "1.2" diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index e13c28448b5b4..27ac25e4f4d5c 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -14,8 +14,8 @@ bevy = ["glam", "smallvec"] [dependencies] # bevy -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.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 08d69d36cd580..c044319f8752a 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.7.0-dev" +version = "0.7.0" edition = "2021" description = "Derive implementations for bevy_reflect" homepage = "https://bevyengine.org" @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0" } syn = "1.0" proc-macro2 = "1.0" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index bfd441b781473..33da4af7f715f 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -28,17 +28,17 @@ webgl = ["wgpu/webgl"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_crevice = { path = "../bevy_crevice", version = "0.7.0-dev", features = ["glam"] } -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_crevice = { path = "../bevy_crevice", version = "0.7.0", features = ["glam"] } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # rendering image = { version = "0.23.12", default-features = false } diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 4527cdd5445e2..7a2e8173166d8 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,12 +10,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 0a3c9b3604868..df2954627bc98 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.7.0-dev" +version = "0.7.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.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = [ +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other bytemuck = { version = "1.5", features = ["derive"] } diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 1c3117c181500..8cde5f317b6f6 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.7.0-dev" +version = "0.7.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 c7fa8baf80adb..e00f89e1d4d7f 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,17 +13,17 @@ subpixel_glyph_atlas = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other anyhow = "1.0.4" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 572f9378ca347..68d744f8d96fc 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides transform functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,8 +10,8 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev", features = ["bevy_reflect"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev"} -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0", features = ["bevy_reflect"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0"} +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index cb45d3a65ae40..e9c76c2bc2cc6 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,23 +10,23 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.7.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.7.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.7.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.7.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.7.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.7.0-dev" } -bevy_text = { path = "../bevy_text", version = "0.7.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_asset = { path = "../bevy_asset", version = "0.7.0" } +bevy_core = { path = "../bevy_core", version = "0.7.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.7.0" } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.7.0" } +bevy_input = { path = "../bevy_input", version = "0.7.0" } +bevy_log = { path = "../bevy_log", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.7.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.7.0" } +bevy_text = { path = "../bevy_text", version = "0.7.0" } +bevy_transform = { path = "../bevy_transform", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other stretch = "0.3.2" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index daaa8dfa0348b..625ff6475f666 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -bevy_derive = { path = "../bevy_derive", version = "0.7.0-dev" } +bevy_derive = { path = "../bevy_derive", version = "0.7.0" } ahash = "0.7.0" tracing = {version = "0.1", features = ["release_max_level_info"]} instant = { version = "0.1", features = ["wasm-bindgen"] } diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 87e92727245f8..a6a913ddc62fb 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,10 +10,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } raw-window-handle = "0.4.2" # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 51bc1eb58f2da..4880c81466ad3 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.7.0-dev" +version = "0.7.0" edition = "2021" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,12 +14,12 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.7.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.7.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.7.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.7.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.7.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.7.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.7.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" } +bevy_input = { path = "../bevy_input", version = "0.7.0" } +bevy_math = { path = "../bevy_math", version = "0.7.0" } +bevy_window = { path = "../bevy_window", version = "0.7.0" } +bevy_utils = { path = "../bevy_utils", version = "0.7.0" } # other winit = { version = "0.26.0", default-features = false } diff --git a/tools/publish.sh b/tools/publish.sh index a0cdd0a59dd0c..67b17c3ab0492 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -5,17 +5,18 @@ crates=( bevy_derive bevy_math bevy_tasks + bevy_reflect/bevy_reflect_derive + bevy_reflect bevy_ecs/macros bevy_ecs bevy_app bevy_log bevy_dynamic_plugin - bevy_reflect/bevy_reflect_derive - bevy_reflect bevy_asset bevy_audio bevy_core bevy_diagnostic + bevy_hierarchy bevy_transform bevy_window bevy_crevice/bevy-crevice-derive @@ -24,6 +25,7 @@ crates=( bevy_core_pipeline bevy_input bevy_gilrs + bevy_animation bevy_pbr bevy_gltf bevy_scene