diff --git a/CHANGELOG.md b/CHANGELOG.md index 904517bdac..b8dfed255e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## Unreleased +## Version 0.2.1 (2020-9-20) + +### Fixed + +- [Remove UI queue print][521] +- [Use async executor 1.3.0][526] + +[521]: [https://github.com/bevyengine/bevy/pull/521] +[526]: [https://github.com/bevyengine/bevy/pull/526] + ## Version 0.2.0 (2020-9-19) ### Added diff --git a/Cargo.toml b/Cargo.toml index f22fe6a3e0..78fd7e4265 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -60,31 +60,31 @@ exclude = ["benches"] [dependencies] # bevy -bevy_app= { path = "crates/bevy_app", version = "0.2" } -bevy_asset= { path = "crates/bevy_asset", version = "0.2" } -bevy_type_registry= { path = "crates/bevy_type_registry", version = "0.2" } -bevy_core= { path = "crates/bevy_core", version = "0.2" } -bevy_diagnostic= { path = "crates/bevy_diagnostic", version = "0.2" } -bevy_ecs= { path = "crates/bevy_ecs", version = "0.2" } -bevy_input= { path = "crates/bevy_input", version = "0.2" } -bevy_math= { path = "crates/bevy_math", version = "0.2" } -bevy_property= { path = "crates/bevy_property", version = "0.2" } -bevy_scene= { path = "crates/bevy_scene", version = "0.2" } -bevy_transform= { path = "crates/bevy_transform", version = "0.2" } -bevy_utils= { path = "crates/bevy_utils", version = "0.2" } -bevy_window= { path = "crates/bevy_window", version = "0.2" } -bevy_tasks= { path = "crates/bevy_tasks", version = "0.2" } +bevy_app = { path = "crates/bevy_app", version = "0.2.1" } +bevy_asset = { path = "crates/bevy_asset", version = "0.2.1" } +bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.2.1" } +bevy_core = { path = "crates/bevy_core", version = "0.2.1" } +bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.2.1" } +bevy_ecs = { path = "crates/bevy_ecs", version = "0.2.1" } +bevy_input = { path = "crates/bevy_input", version = "0.2.1" } +bevy_math = { path = "crates/bevy_math", version = "0.2.1" } +bevy_property = { path = "crates/bevy_property", version = "0.2.1" } +bevy_scene = { path = "crates/bevy_scene", version = "0.2.1" } +bevy_transform = { path = "crates/bevy_transform", version = "0.2.1" } +bevy_utils = { path = "crates/bevy_utils", version = "0.2.1" } +bevy_window = { path = "crates/bevy_window", version = "0.2.1" } +bevy_tasks = { path = "crates/bevy_tasks", version = "0.2.1" } # bevy (optional) -bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.2" } -bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.2" } -bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.2" } -bevy_render = { path = "crates/bevy_render", optional = true, version = "0.2" } -bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.2" } -bevy_text = { path = "crates/bevy_text", optional = true, version = "0.2" } -bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.2" } -bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.2" } -bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.2" } -bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.2" } +bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.2.1" } +bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.2.1" } +bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.2.1" } +bevy_render = { path = "crates/bevy_render", optional = true, version = "0.2.1" } +bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.2.1" } +bevy_text = { path = "crates/bevy_text", optional = true, version = "0.2.1" } +bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.2.1" } +bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.2.1" } +bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.2.1" } +bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.2.1" } [dev-dependencies] rand = "0.7.3" diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 3edaf3d2c5..b50acf709e 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ dynamic_plugins = ["libloading"] [dependencies] # bevy -bevy_derive= { path = "../bevy_derive", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_tasks= { path = "../bevy_tasks", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } +bevy_derive = { path = "../bevy_derive", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } # other libloading = { version = "0.6", optional = true } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 0f40a66f35..a74abe54a8 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,11 +18,11 @@ filesystem_watcher = ["notify"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index ad946138c5..99c91ada54 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,9 +14,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } # other anyhow = "1.0" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index dc32e86cef..061e805079 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -19,13 +19,13 @@ dynamic_plugins = [ ] [dependencies] -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_derive= { path = "../bevy_derive", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_derive = { path = "../bevy_derive", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } [target.'cfg(target_arch = "wasm32")'.dependencies] instant = "0.1.6" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index 055db06afb..8c01427b0b 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index df8d930348..fdc41b032c 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ profiler = ["bevy_ecs/profiler"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index c5169eeea6..ccc2135c06 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,9 +17,9 @@ categories = ["game-engines", "data-structures"] profiler = [] [dependencies] -bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.2" } -bevy_tasks= { path = "../bevy_tasks", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.2.1" } +bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } rand = "0.7.3" fixedbitset = "0.3.1" downcast-rs = "1.2.0" diff --git a/crates/bevy_ecs/hecs/Cargo.toml b/crates/bevy_ecs/hecs/Cargo.toml index c7cb463eea..63befdee89 100644 --- a/crates/bevy_ecs/hecs/Cargo.toml +++ b/crates/bevy_ecs/hecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hecs" -version = "0.2.0" +version = "0.2.1" description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system" authors = [ "Benjamin Saunders ", @@ -27,8 +27,8 @@ macros = ["bevy_hecs_macros", "lazy_static"] serialize = ["serde"] [dependencies] -bevy_hecs_macros = { path = "macros", version = "0.2", optional = true } -bevy_utils= { path = "../../bevy_utils", version = "0.2" } +bevy_hecs_macros = { path = "macros", version = "0.2.1", optional = true } +bevy_utils = { path = "../../bevy_utils", version = "0.2.1" } lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] } serde = { version = "1", features = ["derive"], optional = true} rand = "0.7.3" diff --git a/crates/bevy_ecs/hecs/macros/Cargo.toml b/crates/bevy_ecs/hecs/macros/Cargo.toml index af49da49b0..9809c239b2 100644 --- a/crates/bevy_ecs/hecs/macros/Cargo.toml +++ b/crates/bevy_ecs/hecs/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_hecs_macros" -version = "0.2.0" +version = "0.2.1" description = "Bevy fork of hecs-macros: procedural macro definitions for hecs" authors = ["Benjamin Saunders "] edition = "2018" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 6489929740..60b8bc59e3 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = ["Bevy Contributors ", "Carter Anderson "] description = "Gamepad system made using Gilrs for Bevy Engine" @@ -11,9 +11,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_input= { path = "../bevy_input", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_input = { path = "../bevy_input", version = "0.2.1" } # other gilrs = "0.7.4" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 8170323f15..bbb88a2caa 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,9 +14,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } # other gltf = { version = "0.15.2", default-features = false, features = ["utils"] } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 71ac52658d..eb8cab4aad 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index f847b4f87d..6eaf534f58 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index b19b09aae1..173a4cf34d 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -13,14 +13,14 @@ license = "MIT" keywords = ["bevy"] [dependencies] -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_derive= { path = "../bevy_derive", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } -bevy_transform= { path = "../bevy_transform", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_window= { path = "../bevy_window", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_derive = { path = "../bevy_derive", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } +bevy_transform = { path = "../bevy_transform", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_window = { path = "../bevy_window", version = "0.2.1" } diff --git a/crates/bevy_property/Cargo.toml b/crates/bevy_property/Cargo.toml index f64088dcc7..2895c49e0a 100644 --- a/crates/bevy_property/Cargo.toml +++ b/crates/bevy_property/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_property" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_property_derive= { path = "bevy_property_derive", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_property_derive = { path = "bevy_property_derive", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other erased-serde = "0.3" diff --git a/crates/bevy_property/bevy_property_derive/Cargo.toml b/crates/bevy_property/bevy_property_derive/Cargo.toml index 89d88ccd84..454a1b886e 100644 --- a/crates/bevy_property/bevy_property_derive/Cargo.toml +++ b/crates/bevy_property/bevy_property_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_property_derive" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 01d2140481..3c1826cda2 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,17 +14,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_derive= { path = "../bevy_derive", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_transform= { path = "../bevy_transform", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_window= { path = "../bevy_window", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_derive = { path = "../bevy_derive", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_transform = { path = "../bevy_transform", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_window = { path = "../bevy_window", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # rendering spirv-reflect = "0.2.3" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index b94abc8619..391be58174 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index f25a7aa26f..ea63713746 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,15 +14,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } -bevy_transform= { path = "../bevy_transform", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } +bevy_transform = { path = "../bevy_transform", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other rectangle-pack = "0.1" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 7759b34efe..b4a067d539 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.2.0" +version = "0.2.1" authors = [ "Bevy Contributors ", "Lachlan Sneff ", diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 5e06338caa..f4a95b74e5 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,13 +14,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } -bevy_sprite= { path = "../bevy_sprite", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } +bevy_sprite = { path = "../bevy_sprite", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other ab_glyph = "0.2.5" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 76b9985440..c35aeb1cfb 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other log = "0.4" diff --git a/crates/bevy_type_registry/Cargo.toml b/crates/bevy_type_registry/Cargo.toml index 21d17603e5..9e7d47441d 100644 --- a/crates/bevy_type_registry/Cargo.toml +++ b/crates/bevy_type_registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_type_registry" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ dynamic_plugins = ["bevy_app/dynamic_plugins"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_property= { path = "../bevy_property", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_property = { path = "../bevy_property", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 1ba52d0af5..ca67101e71 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,20 +14,20 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_derive= { path = "../bevy_derive", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_input= { path = "../bevy_input", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } -bevy_sprite= { path = "../bevy_sprite", version = "0.2" } -bevy_text= { path = "../bevy_text", version = "0.2" } -bevy_transform= { path = "../bevy_transform", version = "0.2" } -bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" } -bevy_window= { path = "../bevy_window", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_derive = { path = "../bevy_derive", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_input = { path = "../bevy_input", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } +bevy_sprite = { path = "../bevy_sprite", version = "0.2.1" } +bevy_text = { path = "../bevy_text", version = "0.2.1" } +bevy_transform = { path = "../bevy_transform", version = "0.2.1" } +bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" } +bevy_window = { path = "../bevy_window", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other stretch = "0.3" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index b8bdf2c02c..64288f8c74 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index a1c4688ccd..bcd6b70d96 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_wgpu" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,15 +18,15 @@ trace = ["wgpu/trace"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_asset= { path = "../bevy_asset", version = "0.2" } -bevy_core= { path = "../bevy_core", version = "0.2" } -bevy_diagnostic= { path = "../bevy_diagnostic", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_render= { path = "../bevy_render", version = "0.2" } -bevy_window= { path = "../bevy_window", version = "0.2" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_asset = { path = "../bevy_asset", version = "0.2.1" } +bevy_core = { path = "../bevy_core", version = "0.2.1" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_render = { path = "../bevy_render", version = "0.2.1" } +bevy_window = { path = "../bevy_window", version = "0.2.1" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other wgpu = "0.6" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 6e9a4b58a1..5ee03dc701 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index e4b1b2e580..ac286e0300 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,12 +18,12 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app= { path = "../bevy_app", version = "0.2" } -bevy_ecs= { path = "../bevy_ecs", version = "0.2" } -bevy_input= { path = "../bevy_input", version = "0.2" } -bevy_math= { path = "../bevy_math", version = "0.2" } -bevy_window= { path = "../bevy_window", version = "0.2" } -bevy_utils= { path = "../bevy_utils", version = "0.2" } +bevy_app = { path = "../bevy_app", version = "0.2.1" } +bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" } +bevy_input = { path = "../bevy_input", version = "0.2.1" } +bevy_math = { path = "../bevy_math", version = "0.2.1" } +bevy_window = { path = "../bevy_window", version = "0.2.1" } +bevy_utils = { path = "../bevy_utils", version = "0.2.1" } # other winit = { version = "0.22.2", package = "cart-tmp-winit", default-features = false } diff --git a/tools/publish.sh b/tools/publish.sh index 7e4466d767..9ce3e2365a 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -35,7 +35,7 @@ for crate in "${crates[@]}" do echo "Publishing ${crate}" (cd $crate; cargo publish) - sleep 30 + sleep 15 done cd ..