diff --git a/Cargo.toml b/Cargo.toml index f8f26109910da..2905c2cf27d86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework" @@ -116,11 +116,11 @@ debug_asset_server = ["bevy_internal/debug_asset_server"] animation = ["bevy_internal/animation"] [dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.9.0-dev", default-features = false, optional = true } -bevy_internal = { path = "crates/bevy_internal", version = "0.9.0-dev", default-features = false } +bevy_dylib = { path = "crates/bevy_dylib", version = "0.9.0", default-features = false, optional = true } +bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false } [target.'cfg(target_arch = "wasm32")'.dependencies] -bevy_internal = { path = "crates/bevy_internal", version = "0.9.0-dev", default-features = false, features = [ +bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false, features = [ "webgl", ] } diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 1cf3668b094a4..5079bf057b837 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_animation" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides animation functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,13 +10,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_time = { path = "../bevy_time", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_time = { path = "../bevy_time", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index af2d533437a46..3705bde56eee5 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -16,10 +16,10 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", default-features = false } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", default-features = false } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.9.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 bc8602b21e906..c64bb610bf939 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other serde = { version = "1", features = ["derive"] } @@ -45,4 +45,4 @@ ndk-glue = { version = "0.7" } [dev-dependencies] futures-lite = "1.4.0" tempfile = "3.2.0" -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 495091215275c..3d5f9d89d04e7 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other anyhow = "1.0.4" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 90745ff093a3c..2e2c4cea863b2 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev", features = ["bevy_reflect"] } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", features = ["bevy_reflect"] } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0", features = ["bevy_reflect"] } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", features = ["bevy_reflect"] } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other bytemuck = "1.5" diff --git a/crates/bevy_core_pipeline/Cargo.toml b/crates/bevy_core_pipeline/Cargo.toml index 6f16b9439ee75..af8c0b46f066c 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.9.0-dev" +version = "0.9.0" edition = "2021" authors = [ "Bevy Contributors ", @@ -18,15 +18,15 @@ webgl = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0" } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } serde = { version = "1", features = ["derive"] } bitflags = "1.2" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index 267da668f6700..e2bbe1ca97400 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0" } quote = "1.0" syn = { version = "1.0", features = ["full"] } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 85ac1a5b08640..32875f0ae1814 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -11,9 +11,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_time = { path = "../bevy_time", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index df62cc4b031f7..76f80cb6ef1a8 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.9.0", default-features = false } diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 2891c71418217..521fbba02af59 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.9.0-dev" +version = "0.9.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.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } # other libloading = { version = "0.7" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 29769f6e45e62..000c2121a7d1c 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" @@ -14,11 +14,11 @@ trace = [] default = ["bevy_reflect"] [dependencies] -bevy_ptr = { path = "../bevy_ptr", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_ecs_macros = { path = "macros", version = "0.9.0-dev" } +bevy_ptr = { path = "../bevy_ptr", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_ecs_macros = { path = "macros", version = "0.9.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 d3c6e89ee24c5..ad77ec9b53503 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.9.0-dev" +version = "0.9.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.9.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0" } syn = "1.0" quote = "1.0" diff --git a/crates/bevy_encase_derive/Cargo.toml b/crates/bevy_encase_derive/Cargo.toml index ccca2dde64731..690d4c76e0886 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.9.0-dev" +version = "0.9.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.9.0-dev" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0" } encase_derive_impl = "0.4.0" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index ed9597cdb0c3f..4623ee5050133 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_input = { path = "../bevy_input", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other gilrs = "0.9.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 80752651bd864..7de5d83ac814a 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev", optional = true } -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_pbr = { path = "../bevy_pbr", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_scene = { path = "../bevy_scene", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_animation = { path = "../bevy_animation", version = "0.9.0", optional = true } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_pbr = { path = "../bevy_pbr", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_scene = { path = "../bevy_scene", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.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 471e19a3c604d..476e4a38bfa56 100644 --- a/crates/bevy_hierarchy/Cargo.toml +++ b/crates/bevy_hierarchy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hierarchy" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", features = ["bevy_reflect"] } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", features = ["bevy_reflect"] } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.9.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 05978a4aa6252..4dcb1ea340e72 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,11 +14,11 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["glam"] } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["glam"] } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 735113ec2e8a8..91bc44d2fe2d3 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic' feature" homepage = "https://bevyengine.org" @@ -65,37 +65,37 @@ animation = ["bevy_animation", "bevy_gltf?/bevy_animation"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_ptr = { path = "../bevy_ptr", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_time = { path = "../bevy_time", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_input = { path = "../bevy_input", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_ptr = { path = "../bevy_ptr", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_time = { path = "../bevy_time", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } # bevy (optional) -bevy_animation = { path = "../bevy_animation", optional = true, version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", optional = true, version = "0.9.0-dev" } -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.9.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.9.0-dev" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.9.0-dev" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.9.0-dev" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.9.0-dev" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.9.0-dev" } -bevy_scene = { path = "../bevy_scene", optional = true, version = "0.9.0-dev" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.9.0-dev" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.9.0-dev" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.9.0-dev" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.9.0-dev" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.9.0-dev" } +bevy_animation = { path = "../bevy_animation", optional = true, version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", optional = true, version = "0.9.0" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.9.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.9.0" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.9.0" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.9.0" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.9.0" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.9.0" } +bevy_scene = { path = "../bevy_scene", optional = true, version = "0.9.0" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.9.0" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.9.0" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.9.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.9.0" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.9.0" } [target.'cfg(target_os = "android")'.dependencies] # This version *must* be the same as the version used by winit, diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 06c73627f5e36..a4f45028b1406 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" @@ -12,9 +12,9 @@ keywords = ["bevy"] trace = [ "tracing-error" ] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]} tracing-chrome = { version = "0.6.0", optional = true } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 4eb7aaec77381..fa6b660413156 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.9.0-dev" +version = "0.9.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 4f88783f4d129..cdd89cb87c4cd 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.9.0-dev" +version = "0.9.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 5a930eeae5ce9..c35b247aa63ce 100644 --- a/crates/bevy_mikktspace/Cargo.toml +++ b/crates/bevy_mikktspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mikktspace" -version = "0.9.0-dev" +version = "0.9.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 f5db34d983865..7238e48d2b4c6 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } # other bitflags = "1.2" diff --git a/crates/bevy_ptr/Cargo.toml b/crates/bevy_ptr/Cargo.toml index 04b7e30fc9b5b..ddc63bf913020 100644 --- a/crates/bevy_ptr/Cargo.toml +++ b/crates/bevy_ptr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ptr" -version = "0.9.0-dev" +version = "0.9.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 73117bbf08d3f..f74889c5ab06b 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" @@ -18,10 +18,10 @@ documentation = ["bevy_reflect_derive/documentation"] [dependencies] # bevy -bevy_math = { path = "../bevy_math", version = "0.9.0-dev", features = ["serialize"], optional = true } -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_ptr = { path = "../bevy_ptr", version = "0.9.0-dev" } +bevy_math = { path = "../bevy_math", version = "0.9.0", features = ["serialize"], optional = true } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_ptr = { path = "../bevy_ptr", version = "0.9.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 669bf561351dc..24f0d0863f922 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.9.0-dev" +version = "0.9.0" edition = "2021" description = "Derive implementations for bevy_reflect" homepage = "https://bevyengine.org" @@ -17,10 +17,10 @@ default = [] documentation = [] [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0" } syn = { version = "1.0", features = ["full"] } proc-macro2 = "1.0" quote = "1.0" uuid = { version = "1.1", features = ["v4"] } -bit-set = "0.5.2" \ No newline at end of file +bit-set = "0.5.2" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index e2b71589321e1..605871172c2ec 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -28,22 +28,22 @@ webgl = ["wgpu/webgl"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core = { path = "../bevy_core", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.9.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_render_macros = { path = "macros", version = "0.9.0-dev" } -bevy_time = { path = "../bevy_time", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core = { path = "../bevy_core", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_encase_derive = { path = "../bevy_encase_derive", version = "0.9.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_mikktspace = { path = "../bevy_mikktspace", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_render_macros = { path = "macros", version = "0.9.0" } +bevy_time = { path = "../bevy_time", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.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 c57084557c830..06db92a288712 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.9.0-dev" +version = "0.9.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.9.0-dev" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0" } syn = "1.0" proc-macro2 = "1.0" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 81fbb5ab7a78a..3980816bec730 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,15 +10,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_render = { path = "../bevy_render", version = "0.9.0" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 2fd1225965017..550353032c732 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = [ +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } # other bytemuck = { version = "1.5", features = ["derive"] } diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 0295ecf3018f9..f86fb78d3bc23 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.9.0-dev" +version = "0.9.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 4f33419da6b97..2a6ed22d7372f 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -13,16 +13,16 @@ subpixel_glyph_atlas = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other anyhow = "1.0.4" diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 80f3ea8afe507..a95210464e936 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_time" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides time functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,10 +14,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", features = ["bevy_reflect"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", features = ["bevy_reflect"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other crossbeam-channel = "0.5.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 5fcc1bdaf2283..a39b47c4de85a 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides transform functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,11 +10,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", features = ["bevy_reflect"] } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", features = ["bevy_reflect"] } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] } serde = { version = "1", features = ["derive"], optional = true } [features] diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 987179a663379..8b85a40b088a3 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" @@ -10,24 +10,24 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" } -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0-dev" } -bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.9.0-dev" } -bevy_log = { path = "../bevy_log", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = [ +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_asset = { path = "../bevy_asset", version = "0.9.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0" } +bevy_derive = { path = "../bevy_derive", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" } +bevy_input = { path = "../bevy_input", version = "0.9.0" } +bevy_log = { path = "../bevy_log", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = [ "bevy", ] } -bevy_render = { path = "../bevy_render", version = "0.9.0-dev" } -bevy_sprite = { path = "../bevy_sprite", version = "0.9.0-dev" } -bevy_text = { path = "../bevy_text", version = "0.9.0-dev" } -bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_render = { path = "../bevy_render", version = "0.9.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.9.0" } +bevy_text = { path = "../bevy_text", version = "0.9.0" } +bevy_transform = { path = "../bevy_transform", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other taffy = "0.1.0" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 49c67fc021f5c..a61ce8d16594d 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 74e29cd93d890..5686739692608 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" @@ -14,13 +14,13 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # Used for close_on_esc -bevy_input = { path = "../bevy_input", version = "0.9.0-dev" } +bevy_input = { path = "../bevy_input", version = "0.9.0" } raw-window-handle = "0.5" # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index c6b2170b246f2..3d78e7160d1c2 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.9.0-dev" +version = "0.9.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.9.0-dev" } -bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" } -bevy_input = { path = "../bevy_input", version = "0.9.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.9.0-dev" } -bevy_window = { path = "../bevy_window", version = "0.9.0-dev" } -bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" } +bevy_app = { path = "../bevy_app", version = "0.9.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" } +bevy_input = { path = "../bevy_input", version = "0.9.0" } +bevy_math = { path = "../bevy_math", version = "0.9.0" } +bevy_window = { path = "../bevy_window", version = "0.9.0" } +bevy_utils = { path = "../bevy_utils", version = "0.9.0" } # other winit = { version = "0.27", default-features = false } diff --git a/tools/build-example-pages/Cargo.toml b/tools/build-example-pages/Cargo.toml index ab97d1468965f..6ab8fb1fd2fa8 100644 --- a/tools/build-example-pages/Cargo.toml +++ b/tools/build-example-pages/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "build-example-pages" -version = "0.9.0-dev" +version = "0.9.0" edition = "2021" description = "handle examples in Bevy" publish = false diff --git a/tools/spancmp/Cargo.toml b/tools/spancmp/Cargo.toml index 7a2464691addc..525d789c6bb44 100644 --- a/tools/spancmp/Cargo.toml +++ b/tools/spancmp/Cargo.toml @@ -12,5 +12,5 @@ serde = { version = "1.0", features = ["derive"] } clap = { version = "4.0", features = ["derive"] } regex = "1.5" termcolor = "1.1" -bevy_utils = { path = "../../crates/bevy_utils", version = "0.9.0-dev" } +bevy_utils = { path = "../../crates/bevy_utils", version = "0.9.0" } lazy_static = "1.4"