From 3b2c6ce49b3b9ea8bc5cb68f8d350a80ff928af6 Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Sat, 19 Dec 2020 11:28:00 -0800 Subject: [PATCH] release 0.4.0 (#1093) --- CHANGELOG.md | 4 +- Cargo.toml | 6 +-- crates/bevy_app/Cargo.toml | 8 +-- crates/bevy_asset/Cargo.toml | 12 ++--- crates/bevy_audio/Cargo.toml | 12 ++--- crates/bevy_core/Cargo.toml | 16 +++--- crates/bevy_derive/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 10 ++-- crates/bevy_dylib/Cargo.toml | 4 +- crates/bevy_dynamic_plugin/Cargo.toml | 4 +- crates/bevy_ecs/Cargo.toml | 8 +-- crates/bevy_ecs/macros/Cargo.toml | 2 +- crates/bevy_gilrs/Cargo.toml | 10 ++-- crates/bevy_gltf/Cargo.toml | 20 +++---- crates/bevy_input/Cargo.toml | 10 ++-- crates/bevy_internal/Cargo.toml | 54 +++++++++---------- crates/bevy_log/Cargo.toml | 6 +-- crates/bevy_math/Cargo.toml | 4 +- crates/bevy_pbr/Cargo.toml | 22 ++++---- crates/bevy_reflect/Cargo.toml | 10 ++-- .../bevy_reflect_derive/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 22 ++++---- crates/bevy_scene/Cargo.toml | 14 ++--- crates/bevy_sprite/Cargo.toml | 20 +++---- crates/bevy_tasks/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 20 +++---- crates/bevy_transform/Cargo.toml | 12 ++--- crates/bevy_ui/Cargo.toml | 30 +++++------ crates/bevy_utils/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 20 +++---- crates/bevy_window/Cargo.toml | 10 ++-- crates/bevy_winit/Cargo.toml | 14 ++--- tools/publish.sh | 6 ++- 33 files changed, 200 insertions(+), 198 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be8764d89e..2b6ae7a4aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,10 @@ While we try to keep the `Unreleased` changes updated, it is often behind and do all merged pull requests. To see a list of all changes since the latest release, you may compare current changes on git with [previous release tags][git_tag_comparison]. -[git_tag_comparison]: https://github.com/bevyengine/bevy/compare/v0.3.0...master +[git_tag_comparison]: https://github.com/bevyengine/bevy/compare/v0.4.0...master -## Unreleased +## Version 0.4.0 (2020-12-19) ### Added - [add bevymark benchmark example][273] diff --git a/Cargo.toml b/Cargo.toml index 4f8cdf8038..207cd12341 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -72,8 +72,8 @@ wayland = ["bevy_internal/wayland"] x11 = ["bevy_internal/x11"] [dependencies] -bevy_dylib = {path = "crates/bevy_dylib", version = "0.3.0", default-features = false, optional = true} -bevy_internal = {path = "crates/bevy_internal", version = "0.3.0", default-features = false} +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} [dev-dependencies] anyhow = "1.0" diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 47f4baf181..52a5b3030c 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,9 +17,9 @@ trace = [] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +bevy_derive = { path = "../bevy_derive", version = "0.4.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.4.0" } +bevy_utils = { path = "../bevy_utils", version = "0.4.0" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 31b5d9f075..e5644853e5 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,11 +18,11 @@ filesystem_watcher = ["notify"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +bevy_app = { path = "../bevy_app", 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_tasks = { path = "../bevy_tasks", version = "0.4.0" } +bevy_utils = { path = "../bevy_utils", version = "0.4.0" } # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index b4517d9ef8..ca56db3a80 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,11 +14,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other anyhow = "1.0" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 2e419c07a4..7986e54f4b 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index f8f7aa4ee8..c64ecb4b70 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 50f01f3dd1..2b39528e29 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -15,10 +15,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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_utils = { path = "../bevy_utils", version = "0.4.0" } # other parking_lot = "0.11.0" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index cd2d3de5e7..caa404bb22 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -16,4 +16,4 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.3.0", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "0.4.0", default-features = false } diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 8a955022e5..c367fe1aa7 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.3.0" +version = "0.4.0" authors = [ "Bevy Contributors ", "Carter Anderson ", @@ -16,7 +16,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } +bevy_app = { path = "../bevy_app", version = "0.4.0" } # other libloading = { version = "0.6" } diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 44faa1178c..e1355f3ca9 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -17,9 +17,9 @@ categories = ["game-engines", "data-structures"] trace = [] [dependencies] -bevy_tasks = { path = "../bevy_tasks", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } -bevy_ecs_macros = { path = "macros", version = "0.3.0" } +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" } rand = "0.7.3" serde = "1.0" thiserror = "1.0" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 06aac2250f..007751d323 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.3.0" +version = "0.4.0" description = "Bevy ECS Macros" authors = ["Benjamin Saunders "] edition = "2018" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 4adb09b027..2480e7f7b2 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.3.0" +version = "0.4.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.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_input = { path = "../bevy_input", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # 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 9b6f6a9a06..1b0937e69a 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,15 +14,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_pbr = { path = "../bevy_pbr", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_scene = { path = "../bevy_scene", version = "0.3.0" } +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_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" } # 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 0c4e22807f..5349a01dbb 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 49cd22cb77..b2ee4dffb2 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -39,33 +39,33 @@ x11 = ["bevy_winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_input = { path = "../bevy_input", version = "0.3.0" } -bevy_log = { path = "../bevy_log", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_scene = { path = "../bevy_scene", version = "0.3.0" } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.3.0" } +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 (optional) -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.3.0" } -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.3.0" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.3.0" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.3.0" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.3.0" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.3.0" } -bevy_text = { path = "../bevy_text", optional = true, version = "0.3.0" } -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.3.0" } -bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.3.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.3.0" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.3.0" } +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" } [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 1a9ac14203..32c0ad3281 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,8 +14,8 @@ keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +bevy_app = { path = "../bevy_app", version = "0.4.0" } +bevy_utils = { path = "../bevy_utils", version = "0.4.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 05f9d078a1..469312111b 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,4 +14,4 @@ keywords = ["bevy"] [dependencies] glam = { version = "0.11.0", features = ["serde"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "0.4.0", features = ["bevy"] } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 419bb8fe4a..8a09959024 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -13,13 +13,13 @@ license = "MIT" keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } +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" } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index e9445ef892..35ca0f69fc 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,10 +18,10 @@ bevy = ["bevy_ecs", "bevy_app", "glam", "smallvec"] [dependencies] # bevy -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0", optional = true } -bevy_app = { path = "../bevy_app", version = "0.3.0", optional = true } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.4.0" } +bevy_utils = { path = "../bevy_utils", version = "0.4.0" } +bevy_ecs = { path = "../bevy_ecs", version = "0.4.0", optional = true } +bevy_app = { path = "../bevy_app", version = "0.4.0", optional = true } # 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 917c4d3347..d9e338082c 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.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 8732535ac2..6321bee69f 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,16 +14,16 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # rendering image = { version = "0.23.12", default-features = false } diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 051f9e4542..a6d862f6e8 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,12 +14,12 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 850ca0d41c..57f35d7ec3 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,15 +14,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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_transform = { path = "../bevy_transform", version = "0.4.0" } +bevy_utils = { path = "../bevy_utils", version = "0.4.0" } # other rectangle-pack = "0.2" diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index 344ec184a2..a11a6f1db5 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 588e913c85..81e93a34a2 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,15 +14,15 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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_utils = { path = "../bevy_utils", version = "0.4.0" } # other anyhow = "1.0" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index cb0a4aced3..3f1584991c 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,11 +14,11 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other smallvec = { version = "1.4", features = ["serde"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index e59ea6cc78..7c39664d9f 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,20 +14,20 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_derive = { path = "../bevy_derive", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_input = { path = "../bevy_input", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.3.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.3.0" } -bevy_text = { path = "../bevy_text", version = "0.3.0" } -bevy_transform = { path = "../bevy_transform", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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_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" } # other stretch = "0.3" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 8cd01753fd..96ce6d8097 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index aa96a3d8c2..31d9cc1d92 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_wgpu" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,15 +18,15 @@ trace = ["wgpu/trace"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_asset = { path = "../bevy_asset", version = "0.3.0" } -bevy_core = { path = "../bevy_core", version = "0.3.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_render = { path = "../bevy_render", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other wgpu = "0.6" diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index e4c41430df..6c340562de 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -14,10 +14,10 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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" } # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 4deff8744e..f9ef5394d1 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.3.0" +version = "0.4.0" edition = "2018" authors = [ "Bevy Contributors ", @@ -18,12 +18,12 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.3.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" } -bevy_input = { path = "../bevy_input", version = "0.3.0" } -bevy_math = { path = "../bevy_math", version = "0.3.0" } -bevy_window = { path = "../bevy_window", version = "0.3.0" } -bevy_utils = { path = "../bevy_utils", version = "0.3.0" } +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_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" } # other winit = { version = "0.24.0", default-features = false } diff --git a/tools/publish.sh b/tools/publish.sh index 2d5a7452ed..6d827feaf6 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -4,10 +4,10 @@ crates=( bevy_derive bevy_math bevy_tasks - bevy_ecs/hecs/macros - bevy_ecs/hecs + bevy_ecs/macros bevy_ecs bevy_app + bevy_log bevy_dynamic_plugin bevy_reflect/bevy_reflect_derive bevy_reflect @@ -28,6 +28,8 @@ crates=( bevy_ui bevy_winit bevy_wgpu + bevy_internal + bevy_dylib ) cd crates