diff --git a/Cargo.toml b/Cargo.toml index 043341a63732e..0ea4b712499e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -76,8 +76,8 @@ x11 = ["bevy_internal/x11"] subpixel_glyph_atlas = ["bevy_internal/subpixel_glyph_atlas"] [dependencies] -bevy_dylib = {path = "crates/bevy_dylib", version = "0.4.0", default-features = false, optional = true} -bevy_internal = {path = "crates/bevy_internal", version = "0.4.0", default-features = false} +bevy_dylib = {path = "crates/bevy_dylib", version = "0.5.0", default-features = false, optional = true} +bevy_internal = {path = "crates/bevy_internal", version = "0.5.0", default-features = false} [target.'cfg(target_arch = "wasm32")'.dependencies] syn = "=1.0.65" diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index be1b36a05fc73..aecb5b1892410 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ default = ["bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 8854bdfc02c7e..6abbe968c938f 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,13 +18,13 @@ filesystem_watcher = ["notify"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index ca56db3a80805..025d7a39ca615 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,11 +14,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other anyhow = "1.0" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index b4ad35e275005..2a542883bb4e3 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } \ No newline at end of file +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } \ No newline at end of file diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index c64ecb4b709dd..9cff52e78c665 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index c96f967c05f0e..046cf2fea88f8 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -15,11 +15,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other parking_lot = "0.11.0" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index caa404bb22b30..094b7be7fcffa 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -16,4 +16,4 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.4.0", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.5.0", default-features = false } diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index d90f9d1ef1c52..4a8fa0c9bc304 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.4.0" +version = "0.5.0" authors = [ "Bevy Contributors ", "Carter Anderson ", @@ -16,7 +16,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } # other libloading = { version = "0.7" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 3a0e4dc9438e1..ff86bb109c1b4 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ trace = [] default = ["bevy_reflect"] [dependencies] -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } -bevy_ecs_macros = { path = "macros", version = "0.4.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } +bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_ecs_macros = { path = "macros", version = "0.5.0" } async-channel = "1.4" bitflags = "1.2" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 3e7f8a80b1847..329c1841e47c6 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.4.0" +version = "0.5.0" description = "Bevy ECS Macros" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 2480e7f7b2f51..20a0cddfe329e 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = ["Bevy Contributors ", "Carter Anderson "] description = "Gamepad system made using Gilrs for Bevy Engine" @@ -11,10 +11,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_input = { path = "../bevy_input", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other gilrs = "0.8.0" \ No newline at end of file diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 5e8d1ad72b480..b845230c692be 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,16 +14,16 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_pbr = { path = "../bevy_pbr", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_scene = { path = "../bevy_scene", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_scene = { path = "../bevy_scene", version = "0.5.0" } # other gltf = { version = "0.15.2", default-features = false, features = ["utils", "names", "KHR_materials_unlit"] } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 5349a01dbb7cc..acc8bbc79f63f 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index d4556746d3508..a5add55a7848a 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -43,33 +43,33 @@ subpixel_glyph_atlas = ["bevy_text/subpixel_glyph_atlas"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_input = { path = "../bevy_input", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_scene = { path = "../bevy_scene", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_scene = { path = "../bevy_scene", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } # bevy (optional) -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.4.0" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.4.0" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.4.0" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.4.0" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.4.0" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.4.0" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.4.0" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.4.0" } -bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.4.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.4.0" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.4.0" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "0.5.0" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } +bevy_render = { path = "../bevy_render", optional = true, version = "0.5.0" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } +bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } +bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.5.0" } [target.'cfg(target_os = "android")'.dependencies] ndk-glue = {version = "0.2", features = ["logger"]} diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 8f31b44a61796..d977f800f6c4e 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,8 +14,8 @@ keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } tracing-subscriber = {version = "0.2.15", features = ["registry"]} tracing-chrome = { version = "0.3.0", optional = true } diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 57dba897ba2f5..fe252394424f0 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,4 +14,4 @@ keywords = ["bevy"] [dependencies] glam = { version = "0.13.0", features = ["serde"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 8a09959024cb7..3cae195e18293 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -13,13 +13,13 @@ license = "MIT" keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 764818f55b968..6a78890debb61 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,8 +18,8 @@ bevy = ["glam", "smallvec"] [dependencies] # bevy -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.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 d9e338082c96e..debf6625049ca 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.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index d53a4b54e9358..d79870b38b27d 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,16 +14,16 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.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 a6d862f6e88fc..75377ad639f13 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index eb6ea59f25cd1..93ebea6b71d1a 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,17 +14,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } # other rectangle-pack = "0.3" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index a11a6f1db5acf..f2c1bf41f396b 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 855f70398b6db..7008a13e6c363 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,17 +17,17 @@ subpixel_glyph_atlas = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other anyhow = "1.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 3f1584991cc69..82246805c7261 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,11 +14,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other smallvec = { version = "1.4", features = ["serde"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index b0d5921d9e479..8eaa49a0edd81 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,21 +14,21 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_derive = { path = "../bevy_derive", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_input = { path = "../bevy_input", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.4.0" } -bevy_text = { path = "../bevy_text", version = "0.4.0" } -bevy_transform = { path = "../bevy_transform", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } +bevy_text = { path = "../bevy_text", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other stretch = "0.3" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index b0176b064a401..ca11ca3d868ab 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 26371fb645ac9..e7657ac3be392 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_wgpu" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,15 +18,15 @@ trace = ["wgpu/trace"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_asset = { path = "../bevy_asset", version = "0.4.0" } -bevy_core = { path = "../bevy_core", version = "0.4.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_render = { path = "../bevy_render", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other wgpu = "0.7" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 6c340562decfe..b7064f986612e 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 799a2ab24aabd..8f3040c9173b1 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.4.0" +version = "0.5.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,13 +18,13 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.4.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } -bevy_input = { path = "../bevy_input", version = "0.4.0" } -bevy_log = { path = "../bevy_log", version = "0.4.0" } -bevy_math = { path = "../bevy_math", version = "0.4.0" } -bevy_window = { path = "../bevy_window", version = "0.4.0" } -bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other winit = { version = "0.24.0", default-features = false }