diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf4951c5c..904517bdac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## Version 0.2.0 (2020-9-19) + ### Added - [Task System for Bevy][384] @@ -67,6 +69,7 @@ - [Initialize App.schedule systems when running the app][444] - [Fix missing asset info path for synchronous loading][486] - [fix font atlas overflow][495] +- [do not assume font handle is present in assets][490] ### Internal Improvements - Many improvements to Bevy's CI [#325][325], [#349][349], [#357][357], [#373][373], [#423][423] @@ -120,6 +123,7 @@ [478]: https://github.com/bevyengine/bevy/pull/478 [485]: https://github.com/bevyengine/bevy/pull/485 [486]: https://github.com/bevyengine/bevy/pull/486 +[490]: https://github.com/bevyengine/bevy/pull/490 [491]: https://github.com/bevyengine/bevy/pull/491 [495]: https://github.com/bevyengine/bevy/pull/495 [496]: https://github.com/bevyengine/bevy/pull/496 diff --git a/Cargo.toml b/Cargo.toml index 3e234ad2b4..f22fe6a3e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -60,31 +60,31 @@ exclude = ["benches"] [dependencies] # bevy -bevy_app = { path = "crates/bevy_app", version = "0.1" } -bevy_asset = { path = "crates/bevy_asset", version = "0.1" } -bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.1" } -bevy_core = { path = "crates/bevy_core", version = "0.1" } -bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.1" } -bevy_ecs = { path = "crates/bevy_ecs", version = "0.1" } -bevy_input = { path = "crates/bevy_input", version = "0.1" } -bevy_math = { path = "crates/bevy_math", version = "0.1" } -bevy_property = { path = "crates/bevy_property", version = "0.1" } -bevy_scene = { path = "crates/bevy_scene", version = "0.1" } -bevy_transform = { path = "crates/bevy_transform", version = "0.1" } -bevy_utils = { path = "crates/bevy_utils", version = "0.1" } -bevy_window = { path = "crates/bevy_window", version = "0.1" } -bevy_tasks = { path = "crates/bevy_tasks", version = "0.1" } +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 (optional) -bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.1" } -bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.1" } -bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.1" } -bevy_render = { path = "crates/bevy_render", optional = true, version = "0.1" } -bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.1" } -bevy_text = { path = "crates/bevy_text", optional = true, version = "0.1" } -bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.1" } -bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" } -bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" } -bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.1" } +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" } [dev-dependencies] rand = "0.7.3" diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 4db0b33638..3edaf3d2c5 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ dynamic_plugins = ["libloading"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } +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" } # other libloading = { version = "0.6", optional = true } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index d652f5a99b..0f40a66f35 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,11 +18,11 @@ filesystem_watcher = ["notify"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 43feccd034..ad946138c5 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,9 +14,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } +bevy_app= { path = "../bevy_app", version = "0.2" } +bevy_asset= { path = "../bevy_asset", version = "0.2" } +bevy_ecs= { path = "../bevy_ecs", version = "0.2" } # other anyhow = "1.0" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index bc33377704..dc32e86cef 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -19,13 +19,13 @@ dynamic_plugins = [ ] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_derive = { path = "../bevy_derive", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } [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 ec7d8161d2..055db06afb 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 21bbe65371..df8d930348 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ profiler = ["bevy_ecs/profiler"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index e5de273fc0..c5169eeea6 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.1.3" +version = "0.2.0" 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.1" } -bevy_tasks = { path = "../bevy_tasks", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } 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 c87179cec8..c7cb463eea 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.1.3" +version = "0.2.0" 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.1.3", optional = true } -bevy_utils = { path = "../../bevy_utils", version = "0.1" } +bevy_hecs_macros = { path = "macros", version = "0.2", optional = true } +bevy_utils= { path = "../../bevy_utils", version = "0.2" } 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 fcfdb56dcb..af49da49b0 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.1.3" +version = "0.2.0" 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 3c6f74c235..6489929740 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.1.0" +version = "0.2.0" 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.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_input = { path = "../bevy_input", version = "0.1" } +bevy_app= { path = "../bevy_app", version = "0.2" } +bevy_ecs= { path = "../bevy_ecs", version = "0.2" } +bevy_input= { path = "../bevy_input", version = "0.2" } # other gilrs = "0.7.4" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 625e5c59cc..8170323f15 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,9 +14,9 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } +bevy_app= { path = "../bevy_app", version = "0.2" } +bevy_asset= { path = "../bevy_asset", version = "0.2" } +bevy_render= { path = "../bevy_render", version = "0.2" } # 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 885b2e1511..71ac52658d 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 9430df7fed..f847b4f87d 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 91d6318209..b19b09aae1 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -13,14 +13,14 @@ license = "MIT" keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_derive = { path = "../bevy_derive", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } -bevy_transform = { path = "../bevy_transform", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_window = { path = "../bevy_window", version = "0.1" } +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" } diff --git a/crates/bevy_property/Cargo.toml b/crates/bevy_property/Cargo.toml index fec8d390c2..f64088dcc7 100644 --- a/crates/bevy_property/Cargo.toml +++ b/crates/bevy_property/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_property" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_property_derive = { path = "bevy_property_derive", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # 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 e514f4ae2e..89d88ccd84 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.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 2ab0baf942..01d2140481 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,17 +14,17 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_derive = { path = "../bevy_derive", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_transform = { path = "../bevy_transform", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_window = { path = "../bevy_window", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # rendering spirv-reflect = "0.2.3" diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 0299b8d47e..b94abc8619 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 80bc2b8384..f25a7aa26f 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,15 +14,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } -bevy_transform = { path = "../bevy_transform", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other rectangle-pack = "0.1" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 0db9fcb26f..c67956fcc5 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.1.3" +version = "0.2.0" authors = [ "Bevy Contributors ", "Lachlan Sneff ", diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 17ead8b0fd..5e06338caa 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,13 +14,13 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } -bevy_sprite = { path = "../bevy_sprite", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other ab_glyph = "0.2.5" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 521596ecd2..76b9985440 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other log = "0.4" diff --git a/crates/bevy_type_registry/Cargo.toml b/crates/bevy_type_registry/Cargo.toml index b825270192..21d17603e5 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.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,10 +17,10 @@ dynamic_plugins = ["bevy_app/dynamic_plugins"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_property = { path = "../bevy_property", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 03bdd2a8db..1ba52d0af5 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,20 +14,20 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_derive = { path = "../bevy_derive", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_input = { path = "../bevy_input", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } -bevy_sprite = { path = "../bevy_sprite", version = "0.1" } -bevy_text = { path = "../bevy_text", version = "0.1" } -bevy_transform = { path = "../bevy_transform", version = "0.1" } -bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } -bevy_window = { path = "../bevy_window", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other stretch = "0.3" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 3ead8e74c1..b8bdf2c02c 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index da1a613616..a1c4688ccd 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_wgpu" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,15 +18,15 @@ trace = ["wgpu/trace"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_asset = { path = "../bevy_asset", version = "0.1" } -bevy_core = { path = "../bevy_core", version = "0.1" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_render = { path = "../bevy_render", version = "0.1" } -bevy_window = { path = "../bevy_window", version = "0.1" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other wgpu = "0.6" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index f1ebd68a80..6e9a4b58a1 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other uuid = { version = "0.8", features = ["v4", "serde"] } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 30f97a85bb..e4b1b2e580 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.1.3" +version = "0.2.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,12 +18,12 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.1" } -bevy_ecs = { path = "../bevy_ecs", version = "0.1" } -bevy_input = { path = "../bevy_input", version = "0.1" } -bevy_math = { path = "../bevy_math", version = "0.1" } -bevy_window = { path = "../bevy_window", version = "0.1" } -bevy_utils = { path = "../bevy_utils", version = "0.1" } +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" } # other winit = { version = "0.22.2", package = "cart-tmp-winit", default-features = false } diff --git a/tools/publish.sh b/tools/publish.sh index 7cba1a3ef2..7e4466d767 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -1,7 +1,9 @@ # if crate A depends on crate B, B must come before A in this list crates=( + bevy_utils bevy_derive bevy_math + bevy_tasks bevy_ecs/hecs/macros bevy_ecs/hecs bevy_ecs @@ -18,6 +20,7 @@ crates=( bevy_render bevy_gltf bevy_input + bevy_gilrs bevy_pbr bevy_scene bevy_sprite