From 6492844d01d13b8d74f428a6ed20ab6f269cf16d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Thu, 9 Dec 2021 11:53:51 +0100 Subject: [PATCH 01/40] [skip ci] release --- .github/workflows/release.yml | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000000..ac1e7ebc27f87 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,49 @@ +name: Release + +on: + workflow_dispatch: + +env: + CARGO_TERM_COLOR: always + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Install cargo-release + run: | + cargo install cargo-quickinstall + cargo quickinstall cargo-release + + - name: Setup release + run: | + git config user.name 'Bevy Auto Releaser' + git config user.email 'bevy@users.noreply.github.com' + # --workspace: updating all crates in the workspace + # --no-publish: do not publish to crates.io + # --execute: not a dry run + # --no-tag: do not push tag for each new version + # --no-push: do not push the update commits + # --exclude: ignore those packages + cargo release minor \ + --workspace \ + --no-publish \ + --execute \ + --no-tag \ + --no-confirm \ + --no-push \ + --exclude ci \ + --exclude errors \ + --exclude bevy-ios-example + + - name: Create PR + uses: peter-evans/create-pull-request@v3 + with: + delete-branch: true + base: "main" + title: "Preparing Next Release" + body: | + Preparing next release + This PR has been auto-generated From 1ec5e507cdc26218fd3e3041148cfc9bd05bb0ac Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:43 +0000 Subject: [PATCH 02/40] (cargo-release) version 0.6.0 --- crates/bevy_derive/Cargo.toml | 2 +- crates/bevy_ecs/macros/Cargo.toml | 2 +- crates/bevy_macro_utils/Cargo.toml | 2 +- crates/bevy_reflect/bevy_reflect_derive/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index ee774f0db9774..f2ce359ae25ad 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.5.0" } +bevy_macro_utils = { path = "../bevy_macro_utils", version = "^0.6.0"} Inflector = { version = "0.11.4", default-features = false } quote = "1.0" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 69c988afa9481..ff093d8f8af3f 100644 --- a/crates/bevy_ecs/macros/Cargo.toml +++ b/crates/bevy_ecs/macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.5.0" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "^0.6.0"} syn = "1.0" quote = "1.0" diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index f541e2555b3e8..128b1ff09b373 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_macro_utils" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml index 294cc155bc80f..2fa774b00fa99 100644 --- a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml +++ b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] proc-macro = true [dependencies] -bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.5.0" } +bevy_macro_utils = { path = "../../bevy_macro_utils", version = "^0.6.0"} syn = "1.0" proc-macro2 = "1.0" From ce43ee75f8e0bfb3f8036994eeaa103ebda658a7 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:44 +0000 Subject: [PATCH 03/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_derive/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_utils/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index a65d3435d1a94..1d08c6bb80104 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -15,7 +15,7 @@ default = ["bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } bevy_utils = { path = "../bevy_utils", version = "0.5.0" } diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index c94dd5ffc8320..0ee4522c8b18e 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0", features = ["bevy_reflect"] } -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index f2ce359ae25ad..f3d266e3aa354 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_derive" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides derive implementations for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 9f062958177dd..ed75312b6c476 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -49,7 +49,7 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_input = { path = "../bevy_input", version = "0.5.0" } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c3ac5c6167dc0..77576640e551d 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 4289f4afca5ce..08fdb9e3e5861 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} ahash = "0.7.0" tracing = {version = "0.1", features = ["release_max_level_info"]} instant = { version = "0.1", features = ["wasm-bindgen"] } diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 87b00c16afd20..6a2824595d96c 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["bevy"] bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } -bevy_derive = { path = "../../crates/bevy_derive", version = "0.5.0" } +bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } From 9e9702b54d92c4e3d910e0d1010cffd36c8e9fa0 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:44 +0000 Subject: [PATCH 04/40] (cargo-release) version 0.6.0 --- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_ecs/macros/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 7332197560a70..4deebcb45e277 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -17,7 +17,7 @@ default = ["bevy_reflect"] bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "0.5.0" } -bevy_ecs_macros = { path = "macros", version = "0.5.0" } +bevy_ecs_macros = { path = "macros", version = "^0.6.0"} async-channel = "1.4" fixedbitset = "0.4" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index ff093d8f8af3f..8c6cddab3377c 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.5.0" +version = "0.6.0" description = "Bevy ECS Macros" edition = "2021" license = "MIT OR Apache-2.0" From 20f44461d0c2fcae0433375d57aeb36a18d29a6f Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:45 +0000 Subject: [PATCH 05/40] (cargo-release) version 0.6.0 --- crates/bevy_reflect/Cargo.toml | 2 +- crates/bevy_reflect/bevy_reflect_derive/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index ab9b8cbd23265..367d51eab64b9 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -14,7 +14,7 @@ bevy = ["glam", "smallvec"] [dependencies] # bevy -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.5.0" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "0.5.0" } # other diff --git a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml index 2fa774b00fa99..fa30e87b2fdbc 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.5.0" +version = "0.6.0" edition = "2021" description = "Derive implementations for bevy_reflect" homepage = "https://bevyengine.org" From a9deb4ecda59f09a259c87beacbc1b8baa93320b Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:46 +0000 Subject: [PATCH 06/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_gilrs/Cargo.toml | 4 ++-- crates/bevy_input/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_log/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_utils/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 25 files changed, 26 insertions(+), 26 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 1d08c6bb80104..827f5ef89d782 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -18,7 +18,7 @@ default = ["bevy_reflect"] bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 1685b9ee1acd0..6c43575dd21bf 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -20,7 +20,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index ca5c2556fae6e..487484e6cedeb 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other anyhow = "1.0.4" diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 0ee4522c8b18e..2409a95bba246 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -17,7 +17,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect" bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other bytemuck = "1.5" diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index fdbb909522c97..ea7d739e3da98 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -15,4 +15,4 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 4deebcb45e277..308d6659e3431 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -16,7 +16,7 @@ default = ["bevy_reflect"] [dependencies] bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_ecs_macros = { path = "macros", version = "^0.6.0"} async-channel = "1.4" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index b5bc1b6f65b44..4825b41b6b667 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_input = { path = "../bevy_input", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other -gilrs = "0.8.0" \ No newline at end of file +gilrs = "0.8.0" diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 718b3a6b38da6..10c501e982d0d 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -17,7 +17,7 @@ serialize = ["serde"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index ed75312b6c476..e2a82ca600b68 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -58,7 +58,7 @@ bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } # bevy (optional) diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index d7f45cf6ec224..83a5c6be2bcd8 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]} tracing-chrome = { version = "0.4.0", optional = true } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index 367d51eab64b9..c51610da4029b 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -15,7 +15,7 @@ bevy = ["glam", "smallvec"] [dependencies] # bevy bevy_reflect_derive = { path = "bevy_reflect_derive", version = "^0.6.0"} -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other erased-serde = "0.3" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 77576640e551d..1b0b82c0df16a 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -19,7 +19,7 @@ bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.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 8b39b191a86e0..ffc899237079d 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other serde = { version = "1.0", features = ["derive"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 4b1097c8ee153..392d835585122 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -19,7 +19,7 @@ bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } # other diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 613e50f93be40..95afaf0c9d398 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -23,7 +23,7 @@ bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other anyhow = "1.0.4" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 567ba74aad1bd..e45078c60faa2 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other smallvec = { version = "1.6", features = ["serde", "union", "const_generics"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index ab2f886e814e9..a39333210043c 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -23,7 +23,7 @@ bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_text = { path = "../bevy_text", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other stretch = "0.3.2" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 08fdb9e3e5861..46b4ec4dc881e 100644 --- a/crates/bevy_utils/Cargo.toml +++ b/crates/bevy_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_utils" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A collection of utils for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index e1bc40f8d20d6..05fbd4cfed1b6 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -22,7 +22,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other wgpu = { version = "0.11.0", features = ["spirv"] } diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index d4a164549cfe0..b7721fc51cf6f 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} raw-window-handle = "0.3.0" # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index ad3e58c0d65ba..f77489bc09508 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -19,7 +19,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other winit = { version = "0.25.0", default-features = false } diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index fb0f2badbdfbd..b05b1b5c18e27 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -22,7 +22,7 @@ bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_scene = { path = "../../crates/bevy_scene", version = "0.5.0" } bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 6f10fe814b70f..d751b852a9de2 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -23,7 +23,7 @@ bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } # other diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 6a2824595d96c..7b9ad7755fc26 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -23,7 +23,7 @@ bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } -bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # rendering image = { version = "0.23.12", default-features = false } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 9a52e71199495..544ff0ba773bc 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -26,7 +26,7 @@ bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features ] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../../crates/bevy_utils", version = "0.5.0" } +bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # other bytemuck = { version = "1.5", features = ["derive"] } From d9c239d3c71885568a856d8f4cee43a4149c4fcd Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:46 +0000 Subject: [PATCH 07/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_reflect/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 827f5ef89d782..a0e160f2c3527 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -17,7 +17,7 @@ default = ["bevy_reflect"] # bevy bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", optional = true } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 6c43575dd21bf..d998cf10a9e51 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 487484e6cedeb..51c39089e476f 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 2409a95bba246..804eaf7d98e07 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -15,7 +15,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0", features = ["bevy_reflect" bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 308d6659e3431..bb752a46f2dd2 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -14,7 +14,7 @@ trace = [] default = ["bevy_reflect"] [dependencies] -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", optional = true } bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_ecs_macros = { path = "macros", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 850c031633ada..1b702f7f91941 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index e2a82ca600b68..458604c957d94 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -55,7 +55,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index f3cc0b02d3db1..afc604d13adbf 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -10,4 +10,4 @@ keywords = ["bevy"] [dependencies] glam = { version = "0.20.0", features = ["serde", "bytemuck"] } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index b978fcf2fa4b6..e3a0395c81c50 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index c51610da4029b..573705f02668a 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_reflect" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Dynamically interact with rust types" homepage = "https://bevyengine.org" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 1b0b82c0df16a..cdf73abc90bc8 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -16,7 +16,7 @@ bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index ffc899237079d..c55a5d794be23 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 392d835585122..3afef24eeb81f 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -16,7 +16,7 @@ bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 95afaf0c9d398..71e7876291b4b 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -18,7 +18,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index e45078c60faa2..961632cc4fe6c 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index a39333210043c..0f918e7eb2a9b 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -17,7 +17,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_text = { path = "../bevy_text", version = "0.5.0" } diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index b05b1b5c18e27..2bb5c8ed99b88 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -19,7 +19,7 @@ bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } -bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index d751b852a9de2..618af4b1644b5 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -20,7 +20,7 @@ bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 7b9ad7755fc26..df2ee763eda86 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -20,7 +20,7 @@ bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = ["bevy"] } +bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 544ff0ba773bc..adacfc2580ee5 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -21,7 +21,7 @@ bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.5.0", features = [ +bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = [ "bevy", ] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } From 9789a60f3ca436c8a62bb29ed2a88c501bb9b95c Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:47 +0000 Subject: [PATCH 08/40] (cargo-release) version 0.6.0 --- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_tasks/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index d998cf10a9e51..6430cfad9909b 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -19,7 +19,7 @@ bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 804eaf7d98e07..417f2055f7a6c 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -16,7 +16,7 @@ bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index bb752a46f2dd2..49c6a12ffa973 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -15,7 +15,7 @@ default = ["bevy_reflect"] [dependencies] bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", optional = true } -bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_ecs_macros = { path = "macros", version = "^0.6.0"} diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 458604c957d94..7ee0d29fcd8f0 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -60,7 +60,7 @@ bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} # bevy (optional) bevy_audio = { path = "../bevy_audio", optional = true, version = "0.5.0" } bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "0.5.0" } diff --git a/crates/bevy_tasks/Cargo.toml b/crates/bevy_tasks/Cargo.toml index eba4092173768..ecedad7c2f05e 100644 --- a/crates/bevy_tasks/Cargo.toml +++ b/crates/bevy_tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tasks" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A task executor for Bevy Engine" homepage = "https://bevyengine.org" From d8d59f4acd60f2f97196c74d8c8d59e883bb792e Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:48 +0000 Subject: [PATCH 09/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_gilrs/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_input/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index a0e160f2c3527..27eceb6b6db06 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -16,7 +16,7 @@ default = ["bevy_reflect"] [dependencies] # bevy bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", optional = true } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 6430cfad9909b..5d3aa0325ad75 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -16,7 +16,7 @@ filesystem_watcher = ["notify"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 51c39089e476f..dfeae6080f6c8 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 417f2055f7a6c..c213e339134aa 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0", features = ["bevy_reflect"] } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index ea7d739e3da98..e5b087802dab2 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -13,6 +13,6 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 49c6a12ffa973..d549510685e33 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ecs" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Bevy Engine's entity component system" homepage = "https://bevyengine.org" diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 4825b41b6b667..e61b56b808ee8 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 1b702f7f91941..0bab08b9adb39 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 10c501e982d0d..01062f065b8ed 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -15,7 +15,7 @@ serialize = ["serde"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 7ee0d29fcd8f0..1e394ed644d1c 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -51,7 +51,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index e3a0395c81c50..d9ec677068625 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index cdf73abc90bc8..b26a41ce0b7fd 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index c55a5d794be23..6b15b60e89db1 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 3afef24eeb81f..4454fe6d11a2e 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 71e7876291b4b..efb00fab76ae9 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -16,7 +16,7 @@ subpixel_glyph_atlas = [] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 961632cc4fe6c..1b578a6e57271 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0", features = ["bevy_reflect"] } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 0f918e7eb2a9b..1d26052345cbf 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 05fbd4cfed1b6..b7a84888f9b25 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index f77489bc09508..465ff33a37025 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -15,7 +15,7 @@ x11 = ["winit/x11"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 35dec3902346f..371bd2c4bfb5b 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -17,6 +17,6 @@ keywords = ["bevy"] bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index 2bb5c8ed99b88..f9161b4a2f6b0 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["bevy"] bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 618af4b1644b5..8888b98304927 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index df2ee763eda86..bdaf6683dad7c 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index adacfc2580ee5..926ba59506f28 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = [ From 8be8e77f940dabcd3222922081a4f8adcebb17b5 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:48 +0000 Subject: [PATCH 10/40] (cargo-release) version 0.6.0 --- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_input/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index c213e339134aa..cf509fb812578 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0", features = ["bevy_reflect"] } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 0bab08b9adb39..8d140e4bb6b23 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -18,7 +18,7 @@ bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 01062f065b8ed..e70554c19df60 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -16,7 +16,7 @@ serialize = ["serde"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 1e394ed644d1c..a01dd36b12b11 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -54,7 +54,7 @@ bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index afc604d13adbf..4ed4b6edfd842 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_math" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides math functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index d9ec677068625..8344863fccf71 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index b26a41ce0b7fd..0c58245911e26 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 4454fe6d11a2e..b30c1a2d0fd6a 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index efb00fab76ae9..b0d18a36c5fb9 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -17,7 +17,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 1b578a6e57271..56be4cf95b78f 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 1d26052345cbf..818e7f1b13092 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -16,7 +16,7 @@ bevy_core = { path = "../bevy_core", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index b7721fc51cf6f..d2dc06c6a993c 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} raw-window-handle = "0.3.0" diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 465ff33a37025..d3b756ab27144 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -17,7 +17,7 @@ x11 = ["winit/x11"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } +bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index f9161b4a2f6b0..5bd91e95948ae 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -23,7 +23,7 @@ bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", feature bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} -bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } +bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_scene = { path = "../../crates/bevy_scene", version = "0.5.0" } bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 8888b98304927..3adc9e060d71d 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -19,7 +19,7 @@ bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } +bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index bdaf6683dad7c..fc0d6c44330fd 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -19,7 +19,7 @@ bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} -bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } +bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 926ba59506f28..7acd22246a726 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -20,7 +20,7 @@ bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } -bevy_math = { path = "../../crates/bevy_math", version = "0.5.0" } +bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = [ "bevy", ] } From 575af356105083efb9e50017d9be17b780cfd8a5 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:49 +0000 Subject: [PATCH 11/40] (cargo-release) version 0.6.0 --- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index cf509fb812578..3e563e3f37d26 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides core functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index e5b087802dab2..d1b1974d6b9e6 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 8d140e4bb6b23..6921160f32815 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index a01dd36b12b11..c6fe86afe75e3 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -48,7 +48,7 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 8344863fccf71..bd80c1272c04c 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 0c58245911e26..27499a55503fe 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index b30c1a2d0fd6a..32725aff4e8dc 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index b0d18a36c5fb9..20ad5c0bd401d 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -15,7 +15,7 @@ subpixel_glyph_atlas = [] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 818e7f1b13092..3304ec514b2dd 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index b7a84888f9b25..18d3644996f69 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -16,7 +16,7 @@ trace = ["wgpu/trace"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } -bevy_core = { path = "../bevy_core", version = "0.5.0" } +bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_render = { path = "../bevy_render", version = "0.5.0" } diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 371bd2c4bfb5b..66f92d32f08ba 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } -bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } +bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index 5bd91e95948ae..e7aece4e7e874 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } -bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } +bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 3adc9e060d71d..f0ecb8f80a4d5 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } -bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } +bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index fc0d6c44330fd..0193f3b9b3feb 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } -bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } +bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 7acd22246a726..c6c2decb9bc23 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } -bevy_core = { path = "../../crates/bevy_core", version = "0.5.0" } +bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } From 3daf856a03b497999347e9118d1670ffe4852fea Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:50 +0000 Subject: [PATCH 12/40] (cargo-release) version 0.6.0 --- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 5d3aa0325ad75..4f4ac206607f9 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -15,7 +15,7 @@ filesystem_watcher = ["notify"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index d1b1974d6b9e6..497f41cb8ff05 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_diagnostic" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides diagnostic functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index c6fe86afe75e3..851113d92584e 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -50,7 +50,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 18d3644996f69..2b5e78d31f1aa 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -17,7 +17,7 @@ trace = ["wgpu/trace"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "^0.6.0"} -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } +bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_window = { path = "../bevy_window", version = "0.5.0" } From babf722b2731918a91209f16e97878c8379967b6 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:50 +0000 Subject: [PATCH 13/40] (cargo-release) version 0.6.0 --- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 4f4ac206607f9..10cf9ca007b2e 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_asset" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides asset functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index dfeae6080f6c8..d7544252829cd 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 6921160f32815..21ad43f377ee1 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 851113d92584e..2f8e554ddecaf 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -47,7 +47,7 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index bd80c1272c04c..57efd94a34fdc 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 27499a55503fe..f57cafa05ef8d 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 6b15b60e89db1..4932fdd302e99 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "0.5.0" } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 32725aff4e8dc..ed7799a8b4ed6 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 20ad5c0bd401d..6fd1c0fa6261e 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -14,7 +14,7 @@ subpixel_glyph_atlas = [] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 3304ec514b2dd..756cb6192b7b8 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 2b5e78d31f1aa..d322b4b53a22d 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -15,7 +15,7 @@ trace = ["wgpu/trace"] [dependencies] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_asset = { path = "../bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 66f92d32f08ba..d210065fac495 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } -bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index e7aece4e7e874..59c22b41562f7 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } -bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index f0ecb8f80a4d5..4f70bcf7d209c 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } -bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 0193f3b9b3feb..4b72bafb92b27 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } -bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index c6c2decb9bc23..25b0bc9a88af3 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["bevy"] [dependencies] # bevy bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } -bevy_asset = { path = "../../crates/bevy_asset", version = "0.5.0" } +bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} From 9dbac72585b354c61276bb4320f72aa0c9325f73 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:51 +0000 Subject: [PATCH 14/40] (cargo-release) version 0.6.0 --- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index d7544252829cd..5b08bdbe51d08 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_audio" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides audio functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 2f8e554ddecaf..a87652d1895a9 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -62,7 +62,7 @@ bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} # bevy (optional) -bevy_audio = { path = "../bevy_audio", optional = true, version = "0.5.0" } +bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "0.5.0" } bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } From b87c85f552df493f95603ab1171e780846589a9d Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:52 +0000 Subject: [PATCH 15/40] (cargo-release) version 0.6.0 --- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 21ad43f377ee1..9e75fc21b666e 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -17,7 +17,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_log = { path = "../bevy_log", version = "0.5.0" } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index a87652d1895a9..86ef1db0f1f6f 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -57,7 +57,7 @@ bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_scene = { path = "../bevy_scene", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 57efd94a34fdc..4baf2066e7638 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -17,7 +17,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} # other # direct dependency required for derive macro diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index f57cafa05ef8d..ccf60318474f8 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -17,7 +17,7 @@ bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 4932fdd302e99..015e6bc4a4b43 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index ed7799a8b4ed6..ce49250cb652a 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -18,7 +18,7 @@ bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 6fd1c0fa6261e..019b1f3b8e9f0 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -21,7 +21,7 @@ bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 56be4cf95b78f..1b47cac089f8f 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_transform" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides hierarchy and transform functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 756cb6192b7b8..fed3d85ecacfe 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -21,7 +21,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_text = { path = "../bevy_text", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index 59c22b41562f7..de0dbb4753556 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -21,7 +21,7 @@ bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } -bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_scene = { path = "../../crates/bevy_scene", version = "0.5.0" } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 4f70bcf7d209c..212358cbeae50 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -22,7 +22,7 @@ bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } -bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 4b72bafb92b27..5187c698d3c37 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -21,7 +21,7 @@ bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 25b0bc9a88af3..31f3677f20b20 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -25,7 +25,7 @@ bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", feature "bevy", ] } bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } -bevy_transform = { path = "../../crates/bevy_transform", version = "0.5.0" } +bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # other From 5f721ccea89c82987ada3eda7e66c7706bd8cb9d Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:52 +0000 Subject: [PATCH 16/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 86ef1db0f1f6f..4738f882bf0fe 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -59,7 +59,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy bevy_scene = { path = "../bevy_scene", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} # bevy (optional) bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index ccf60318474f8..b4dc1887e6406 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -18,7 +18,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # rendering diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index ce49250cb652a..31163937b7528 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -20,7 +20,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} # other # direct dependency required for derive macro diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 019b1f3b8e9f0..1d6cc091a4958 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -22,7 +22,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index fed3d85ecacfe..627474aa79565 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -22,7 +22,7 @@ bevy_render = { path = "../bevy_render", version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_text = { path = "../bevy_text", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index d322b4b53a22d..41a1d36cf7e60 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -20,7 +20,7 @@ bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index d2dc06c6a993c..1b3c4501d2849 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_window" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides windowing functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index d3b756ab27144..6dcc672096aa2 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} -bevy_window = { path = "../bevy_window", version = "0.5.0" } +bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 212358cbeae50..430ea9e242367 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -24,7 +24,7 @@ bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", feature bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} -bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } +bevy_window = { path = "../../crates/bevy_window", version = "^0.6.0"} # other bitflags = "1.2" diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 5187c698d3c37..92a2455558129 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -22,7 +22,7 @@ bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} -bevy_window = { path = "../../crates/bevy_window", version = "0.5.0" } +bevy_window = { path = "../../crates/bevy_window", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # rendering From f270ee3efc89c6a6a830fcb158b8f4c5ca29ac4c Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:53 +0000 Subject: [PATCH 17/40] (cargo-release) version 0.9.0 --- crates/crevice/Cargo.toml | 2 +- crates/crevice/crevice-derive/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/crevice/Cargo.toml b/crates/crevice/Cargo.toml index 76d473d0c501c..9a069d8b5b0b5 100644 --- a/crates/crevice/Cargo.toml +++ b/crates/crevice/Cargo.toml @@ -23,7 +23,7 @@ std = [] # default-members = ["crevice-derive", "crevice-tests"] [dependencies] -crevice-derive = { version = "0.8.0", path = "crevice-derive" } +crevice-derive = { version = "^0.9.0", path = "crevice-derive" } bytemuck = "1.4.1" mint = "0.5.8" diff --git a/crates/crevice/crevice-derive/Cargo.toml b/crates/crevice/crevice-derive/Cargo.toml index 1d64fbb6738fc..0033220a4bade 100644 --- a/crates/crevice/crevice-derive/Cargo.toml +++ b/crates/crevice/crevice-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crevice-derive" description = "Derive crate for the 'crevice' crate" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["Lucien Greathouse "] documentation = "https://docs.rs/crevice-derive" From a81f9b045c5477cdee8ccdc4ab46d5d5319f7115 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:54 +0000 Subject: [PATCH 18/40] (cargo-release) version 0.9.0 --- Cargo.toml | 2 +- crates/crevice/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7a112614a0d7a..b655185243945 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -105,7 +105,7 @@ ron = "0.6.2" serde = { version = "1", features = ["derive"] } # Needed to poll Task examples futures-lite = "1.11.3" -crevice = { path = "crates/crevice", version = "0.8.0", features = ["glam"] } +crevice = { path = "crates/crevice", version = "^0.9.0", features = ["glam"] } [[example]] name = "hello_world" diff --git a/crates/crevice/Cargo.toml b/crates/crevice/Cargo.toml index 9a069d8b5b0b5..5c3606812b407 100644 --- a/crates/crevice/Cargo.toml +++ b/crates/crevice/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crevice" description = "Create GLSL-compatible versions of structs with explicitly-initialized padding" -version = "0.8.0" +version = "0.9.0" edition = "2021" authors = ["Lucien Greathouse "] documentation = "https://docs.rs/crevice" diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 430ea9e242367..8dba8fe137862 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -30,5 +30,5 @@ bevy_window = { path = "../../crates/bevy_window", version = "^0.6.0"} bitflags = "1.2" # direct dependency required for derive macro bytemuck = { version = "1", features = ["derive"] } -crevice = { path = "../../crates/crevice", version = "0.8.0", features = ["glam"] } +crevice = { path = "../../crates/crevice", version = "^0.9.0", features = ["glam"] } wgpu = { version = "0.11.0", features = ["spirv"] } diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 92a2455558129..5889da5a5c2a8 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -43,7 +43,7 @@ hex = "0.4.2" hexasphere = "6.0.0" parking_lot = "0.11.0" regex = "1.5" -crevice = { path = "../../crates/crevice", version = "0.8.0", features = ["glam"] } +crevice = { path = "../../crates/crevice", version = "^0.9.0", features = ["glam"] } [target.'cfg(target_arch = "wasm32")'.dependencies] wgpu = { version = "0.11.0", features = ["spirv", "webgl"] } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 31f3677f20b20..28adc59db900d 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -30,7 +30,7 @@ bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # other bytemuck = { version = "1.5", features = ["derive"] } -crevice = { path = "../../crates/crevice", version = "0.8.0", features = ["glam"] } +crevice = { path = "../../crates/crevice", version = "^0.9.0", features = ["glam"] } guillotiere = "0.6.0" thiserror = "1.0" rectangle-pack = "0.4" From bdd549f154687ed790070a16da407252152f83ae Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:54 +0000 Subject: [PATCH 19/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 4738f882bf0fe..7755c9c3d3702 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -69,7 +69,7 @@ bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = " bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } bevy_render = { path = "../bevy_render", optional = true, version = "0.5.0" } -bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "0.5.0" } +bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.5.0" } bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "0.5.0" } diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index d210065fac495..9da13d5892d69 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -18,5 +18,5 @@ bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} -bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } +bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index de0dbb4753556..e06defc4efe91 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -20,7 +20,7 @@ bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } +bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 8dba8fe137862..0acb804d1bb31 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -21,7 +21,7 @@ bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } +bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_window = { path = "../../crates/bevy_window", version = "^0.6.0"} diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 5889da5a5c2a8..82bdf4cfad524 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render2" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = [ "Bevy Contributors ", diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 28adc59db900d..e4aa0e5b1d14e 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -24,7 +24,7 @@ bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = [ "bevy", ] } -bevy_render2 = { path = "../bevy_render2", version = "0.5.0" } +bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} From 64df35dbe40e778c0a467aaf080735b61a0070de Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:55 +0000 Subject: [PATCH 20/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 7755c9c3d3702..3a19271ed0939 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -63,7 +63,7 @@ bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} # bevy (optional) bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} -bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "0.5.0" } +bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "^0.6.0"} bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 9da13d5892d69..849c53977fbd4 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_core_pipeline" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = [ "Bevy Contributors ", diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 0acb804d1bb31..1830a39863e0e 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["bevy"] bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index e4aa0e5b1d14e..d4c9baa562255 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["bevy"] bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} -bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.5.0" } +bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} From 0ec31257e3585e2515e3a583430ca13a0f1bab07 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:56 +0000 Subject: [PATCH 21/40] (cargo-release) version 0.6.0 --- crates/bevy_dynamic_plugin/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 4375790aadd56..778272e93fb6b 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.5.0" +version = "0.6.0" edition = "2021" description = "Provides dynamic plugin loading capabilities for non-wasm platforms" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 3a19271ed0939..7fab3a1a8e12d 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -70,7 +70,7 @@ bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } bevy_render = { path = "../bevy_render", optional = true, version = "0.5.0" } bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.5.0" } +bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "0.5.0" } bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } From 753d4962a1134017c1117ba67a14af9dd4d5b33a Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:56 +0000 Subject: [PATCH 22/40] (cargo-release) version 0.6.0 --- crates/bevy_gilrs/Cargo.toml | 2 +- crates/bevy_input/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index e61b56b808ee8..084aadd663cde 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index e70554c19df60..1e92df5714103 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_input" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides input functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 7fab3a1a8e12d..4bbfb1087d347 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -52,7 +52,7 @@ bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 627474aa79565..47071a682a734 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 6dcc672096aa2..c7efb69d36c2f 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -16,7 +16,7 @@ x11 = ["winit/x11"] # bevy bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_input = { path = "../bevy_input", version = "0.5.0" } +bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} From b458ecfb4c4eba74b8f62b0a3a90ada0d5a69ce3 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:57 +0000 Subject: [PATCH 23/40] (cargo-release) version 0.6.0 --- crates/bevy_gilrs/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index 084aadd663cde..c02f2820f42dc 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gilrs" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Gamepad system made using Gilrs for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 4bbfb1087d347..7d166cb0f8e35 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -77,7 +77,7 @@ bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } -bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.5.0" } +bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "^0.6.0"} [target.'cfg(target_os = "android")'.dependencies] ndk-glue = {version = "0.4", features = ["logger"]} From 87e9da339b3bf0c878b089210a6e06b540a661be Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:58 +0000 Subject: [PATCH 24/40] (cargo-release) version 0.6.0 --- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 9e75fc21b666e..2fa4b9acd8ee4 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -16,7 +16,7 @@ bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_scene = { path = "../bevy_scene", version = "0.5.0" } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 7d166cb0f8e35..7eabae6b839e1 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -68,7 +68,7 @@ bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } -bevy_render = { path = "../bevy_render", optional = true, version = "0.5.0" } +bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 4baf2066e7638..d3b3708e9f1ad 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -16,7 +16,7 @@ bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} # other diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index b4dc1887e6406..c293d9cfd569b 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_render" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides rendering functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 31163937b7528..054f1e0f11a11 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -17,7 +17,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 1d6cc091a4958..f5f2ed85f9403 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -19,7 +19,7 @@ bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 47071a682a734..ea6b9c1f385db 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -18,7 +18,7 @@ bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } bevy_text = { path = "../bevy_text", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 41a1d36cf7e60..1b5099b39f867 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -19,7 +19,7 @@ bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_render = { path = "../bevy_render", version = "0.5.0" } +bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} From 8dc710c815ff90a51d939223017b97d2f1c5ea50 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:58 +0000 Subject: [PATCH 25/40] (cargo-release) version 0.6.0 --- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 2fa4b9acd8ee4..3c795b2d099cf 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_pbr = { path = "../bevy_pbr", version = "0.5.0" } +bevy_pbr = { path = "../bevy_pbr", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 7eabae6b839e1..5dd0dfec8a6aa 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -66,7 +66,7 @@ bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "^0.6.0"} bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } -bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.5.0" } +bevy_pbr = { path = "../bevy_pbr", optional = true, version = "^0.6.0"} bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index d3b3708e9f1ad..93c6e207b9097 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Adds PBR rendering to Bevy Engine" homepage = "https://bevyengine.org" From baf1e2376c799cfb56d0e2284626eb74539d9f31 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:56:59 +0000 Subject: [PATCH 26/40] (cargo-release) version 0.6.0 --- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 3c795b2d099cf..5fab779034825 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -19,7 +19,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} -bevy_scene = { path = "../bevy_scene", version = "0.5.0" } +bevy_scene = { path = "../bevy_scene", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } # other diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 5dd0dfec8a6aa..e771967139504 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -56,7 +56,7 @@ bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } -bevy_scene = { path = "../bevy_scene", version = "0.5.0" } +bevy_scene = { path = "../bevy_scene", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 015e6bc4a4b43..574717aa28a0d 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_scene" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides scene functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index e06defc4efe91..7514d8d39d5ec 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -24,7 +24,7 @@ bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} -bevy_scene = { path = "../../crates/bevy_scene", version = "0.5.0" } +bevy_scene = { path = "../../crates/bevy_scene", version = "^0.6.0"} bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } # other From d8331c140f8d2c2b37d32a1c441740041d584eb4 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:00 +0000 Subject: [PATCH 27/40] (cargo-release) version 0.6.0 --- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 5fab779034825..42050942a6c26 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Bevy Engine GLTF loading" homepage = "https://bevyengine.org" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index e771967139504..de249314f0981 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -64,7 +64,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} # bevy (optional) bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "^0.6.0"} -bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.5.0" } +bevy_gltf = { path = "../bevy_gltf", optional = true, version = "^0.6.0"} bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } bevy_pbr = { path = "../bevy_pbr", optional = true, version = "^0.6.0"} bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } From 129b384153172f411d31fa48887cb5fc984cc855 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:00 +0000 Subject: [PATCH 28/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index de249314f0981..a4fc1eabac891 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -67,7 +67,7 @@ bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = t bevy_gltf = { path = "../bevy_gltf", optional = true, version = "^0.6.0"} bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } bevy_pbr = { path = "../bevy_pbr", optional = true, version = "^0.6.0"} -bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "0.5.0" } +bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "^0.6.0"} bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index 7514d8d39d5ec..3422b597ca3d1 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -18,7 +18,7 @@ bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} -bevy_pbr2 = { path = "../bevy_pbr2", version = "0.5.0" } +bevy_pbr2 = { path = "../bevy_pbr2", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 1830a39863e0e..0aef2f62ceb1b 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_pbr2" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = [ "Bevy Contributors ", From 0ed6807a32d813114464987831cf5289f5e1fc1f Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:01 +0000 Subject: [PATCH 29/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index a4fc1eabac891..a6dee2dcb7521 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -65,7 +65,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_audio = { path = "../bevy_audio", optional = true, version = "^0.6.0"} bevy_core_pipeline = { path = "../../pipelined/bevy_core_pipeline", optional = true, version = "^0.6.0"} bevy_gltf = { path = "../bevy_gltf", optional = true, version = "^0.6.0"} -bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "0.5.0" } +bevy_gltf2 = { path = "../../pipelined/bevy_gltf2", optional = true, version = "^0.6.0"} bevy_pbr = { path = "../bevy_pbr", optional = true, version = "^0.6.0"} bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "^0.6.0"} bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index 3422b597ca3d1..e9b3d842619a6 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_gltf2" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = [ "Bevy Contributors ", From 095340c26148280a970724f0f109a5833f7f16f5 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:02 +0000 Subject: [PATCH 30/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index a6dee2dcb7521..3e53d7bd7e5d3 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -71,7 +71,7 @@ bevy_pbr2 = { path = "../../pipelined/bevy_pbr2", optional = true, version = "^0 bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", optional = true, version = "^0.6.0"} bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "0.5.0" } bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 054f1e0f11a11..5dd8a27d5620c 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides sprite functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index f5f2ed85f9403..b567f23761a0b 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -20,7 +20,7 @@ bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} -bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index ea6b9c1f385db..d74e0106b8520 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -19,7 +19,7 @@ bevy_log = { path = "../bevy_log", version = "0.5.0" } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} -bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } +bevy_sprite = { path = "../bevy_sprite", version = "^0.6.0"} bevy_text = { path = "../bevy_text", version = "0.5.0" } bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} From dc08081652114287d1a674ad4a118971cbc2a702 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:02 +0000 Subject: [PATCH 31/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 3e53d7bd7e5d3..b5f1edd08fa2e 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -72,7 +72,7 @@ bevy_render = { path = "../bevy_render", optional = true, version = "^0.6.0"} bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "^0.6.0"} bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", optional = true, version = "^0.6.0"} -bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "0.5.0" } +bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "^0.6.0"} bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index d4c9baa562255..309b609d20c33 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_sprite2" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = [ "Bevy Contributors ", From 7d96a8251e9d5db4a256535affb000cacca0ff08 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:03 +0000 Subject: [PATCH 32/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index b5f1edd08fa2e..d59a35f53f829 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -73,7 +73,7 @@ bevy_render2 = { path = "../../pipelined/bevy_render2", optional = true, version bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", optional = true, version = "^0.6.0"} bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "^0.6.0"} -bevy_text = { path = "../bevy_text", optional = true, version = "0.5.0" } +bevy_text = { path = "../bevy_text", optional = true, version = "^0.6.0"} bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index b567f23761a0b..1bbd307b6cebc 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_text" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides text functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index d74e0106b8520..77ca3b4509204 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -20,7 +20,7 @@ bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_sprite = { path = "../bevy_sprite", version = "^0.6.0"} -bevy_text = { path = "../bevy_text", version = "0.5.0" } +bevy_text = { path = "../bevy_text", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} From 7f76d81e5f46bd99d0c4510cc9bc40635a2d10e1 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:04 +0000 Subject: [PATCH 33/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index d59a35f53f829..09d33adaba457 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -74,7 +74,7 @@ bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, versio bevy_sprite = { path = "../bevy_sprite", optional = true, version = "^0.6.0"} bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "^0.6.0"} bevy_text = { path = "../bevy_text", optional = true, version = "^0.6.0"} -bevy_ui = { path = "../bevy_ui", optional = true, version = "0.5.0" } +bevy_ui = { path = "../bevy_ui", optional = true, version = "^0.6.0"} bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 77ca3b4509204..33de88fcce08c 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_ui" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A custom ECS-driven UI framework built specifically for Bevy Engine" homepage = "https://bevyengine.org" From b96b4f788264a91e919986f61927fd16338f9e0f Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:04 +0000 Subject: [PATCH 34/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 09d33adaba457..13c44905f2c7b 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -76,7 +76,7 @@ bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version bevy_text = { path = "../bevy_text", optional = true, version = "^0.6.0"} bevy_ui = { path = "../bevy_ui", optional = true, version = "^0.6.0"} bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "^0.6.0"} bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "^0.6.0"} [target.'cfg(target_os = "android")'.dependencies] diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 1b5099b39f867..50def4279bfe7 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -21,7 +21,7 @@ bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_window = { path = "../bevy_window", version = "^0.6.0"} -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } +bevy_winit = { path = "../bevy_winit", optional = true, version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index c7efb69d36c2f..4fd82ddc7b688 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_winit" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A winit window and input backend for Bevy Engine" homepage = "https://bevyengine.org" From 176efdd1b0fefaff91d1e766ea574f9a91058d0b Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:05 +0000 Subject: [PATCH 35/40] (cargo-release) version 0.6.0 --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 13c44905f2c7b..6b27df54fcd15 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -75,7 +75,7 @@ bevy_sprite = { path = "../bevy_sprite", optional = true, version = "^0.6.0"} bevy_sprite2 = { path = "../../pipelined/bevy_sprite2", optional = true, version = "^0.6.0"} bevy_text = { path = "../bevy_text", optional = true, version = "^0.6.0"} bevy_ui = { path = "../bevy_ui", optional = true, version = "^0.6.0"} -bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "0.5.0" } +bevy_wgpu = { path = "../bevy_wgpu", optional = true, version = "^0.6.0"} bevy_winit = { path = "../bevy_winit", optional = true, version = "^0.6.0"} bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "^0.6.0"} diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index 50def4279bfe7..c05111cf15dd9 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_wgpu" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "A wgpu render backend for Bevy Engine" homepage = "https://bevyengine.org" From 8df93bb869e5fc207046792b54ac614c137de098 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:06 +0000 Subject: [PATCH 36/40] (cargo-release) version 0.6.0 --- Cargo.toml | 2 +- crates/bevy_dylib/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_log/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b655185243945..406e2857c5b14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ bevy_ci_testing = ["bevy_internal/bevy_ci_testing"] [dependencies] bevy_dylib = { path = "crates/bevy_dylib", version = "0.5.0", default-features = false, optional = true } -bevy_internal = { path = "crates/bevy_internal", version = "0.5.0", default-features = false } +bevy_internal = { path = "crates/bevy_internal", version = "^0.6.0", default-features = false } [dev-dependencies] anyhow = "1.0.4" diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 6a12d11681840..ff5615cd4786e 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -12,4 +12,4 @@ keywords = ["bevy"] crate-type = ["dylib"] [dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.5.0", default-features = false } +bevy_internal = { path = "../bevy_internal", version = "^0.6.0", default-features = false } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 6b27df54fcd15..4400624299fec 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_internal" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic' feature" homepage = "https://bevyengine.org" diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 83a5c6be2bcd8..8a51383506f14 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -25,4 +25,4 @@ console_error_panic_hook = "0.1.6" tracing-wasm = "0.2.1" [dev-dependencies] -bevy_internal = { path = "../bevy_internal", version = "0.5.0" } +bevy_internal = { path = "../bevy_internal", version = "^0.6.0"} From a680002f9ce172c722e43cca6f891a4b42dafcfb Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:06 +0000 Subject: [PATCH 37/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_log/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 27eceb6b6db06..8c99ff5f9603e 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -31,4 +31,4 @@ web-sys = { version = "0.3", features = [ "Window" ] } [dev-dependencies] # bevy -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 10cf9ca007b2e..442ef25ad9920 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -17,7 +17,7 @@ filesystem_watcher = ["notify"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_tasks = { path = "../bevy_tasks", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index 497f41cb8ff05..c6d7e408596b0 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -14,5 +14,5 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 42050942a6c26..dd05f259db077 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -20,7 +20,7 @@ bevy_render = { path = "../bevy_render", version = "^0.6.0"} bevy_transform = { path = "../bevy_transform", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_scene = { path = "../bevy_scene", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} # other gltf = { version = "0.16.0", default-features = false, features = ["utils", "names", "KHR_materials_unlit"] } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 4400624299fec..8d3a655b7093a 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -53,7 +53,7 @@ bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_scene = { path = "../bevy_scene", version = "^0.6.0"} diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 8a51383506f14..9182f9d28bda9 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_log" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides logging for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 5dd8a27d5620c..709991c80a458 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -14,7 +14,7 @@ bevy_app = { path = "../bevy_app", version = "0.5.0" } bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 33de88fcce08c..7c279d6e66278 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -15,7 +15,7 @@ bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "^0.6.0"} -bevy_log = { path = "../bevy_log", version = "0.5.0" } +bevy_log = { path = "../bevy_log", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } bevy_render = { path = "../bevy_render", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index e9b3d842619a6..afb6f3a2ea6ce 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -25,7 +25,7 @@ bevy_transform = { path = "../../crates/bevy_transform", version = "^0.6.0"} bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_scene = { path = "../../crates/bevy_scene", version = "^0.6.0"} -bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } +bevy_log = { path = "../../crates/bevy_log", version = "^0.6.0"} # other gltf = { version = "0.16.0", default-features = false, features = ["utils", "names", "KHR_materials_unlit"] } diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index 309b609d20c33..d06fa33d0d0cb 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -19,7 +19,7 @@ bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} -bevy_log = { path = "../../crates/bevy_log", version = "0.5.0" } +bevy_log = { path = "../../crates/bevy_log", version = "^0.6.0"} bevy_math = { path = "../../crates/bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../../crates/bevy_reflect", version = "^0.6.0", features = [ "bevy", From a1745dcef6083ec980f36042285e0829c03fd254 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:07 +0000 Subject: [PATCH 38/40] (cargo-release) version 0.6.0 --- crates/bevy_app/Cargo.toml | 2 +- crates/bevy_asset/Cargo.toml | 2 +- crates/bevy_audio/Cargo.toml | 2 +- crates/bevy_core/Cargo.toml | 2 +- crates/bevy_diagnostic/Cargo.toml | 2 +- crates/bevy_dynamic_plugin/Cargo.toml | 2 +- crates/bevy_gilrs/Cargo.toml | 2 +- crates/bevy_gltf/Cargo.toml | 2 +- crates/bevy_input/Cargo.toml | 2 +- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_log/Cargo.toml | 2 +- crates/bevy_pbr/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- crates/bevy_scene/Cargo.toml | 2 +- crates/bevy_sprite/Cargo.toml | 2 +- crates/bevy_text/Cargo.toml | 2 +- crates/bevy_transform/Cargo.toml | 2 +- crates/bevy_ui/Cargo.toml | 2 +- crates/bevy_wgpu/Cargo.toml | 2 +- crates/bevy_window/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- pipelined/bevy_core_pipeline/Cargo.toml | 2 +- pipelined/bevy_gltf2/Cargo.toml | 2 +- pipelined/bevy_pbr2/Cargo.toml | 2 +- pipelined/bevy_render2/Cargo.toml | 2 +- pipelined/bevy_sprite2/Cargo.toml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/crates/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index 8c99ff5f9603e..4127158c7683d 100644 --- a/crates/bevy_app/Cargo.toml +++ b/crates/bevy_app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_app" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Provides core App functionality for Bevy Engine" homepage = "https://bevyengine.org" diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 442ef25ad9920..3f3dd0a541762 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -14,7 +14,7 @@ filesystem_watcher = ["notify"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "^0.6.0"} diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index 5b08bdbe51d08..f40ef58f15c68 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_core/Cargo.toml b/crates/bevy_core/Cargo.toml index 3e563e3f37d26..4da34b07f4aa0 100644 --- a/crates/bevy_core/Cargo.toml +++ b/crates/bevy_core/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0", features = ["bevy_reflect"] } +bevy_app = { path = "../bevy_app", version = "^0.6.0", features = ["bevy_reflect"] } bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/crates/bevy_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index c6d7e408596b0..371ce19cbed9e 100644 --- a/crates/bevy_diagnostic/Cargo.toml +++ b/crates/bevy_diagnostic/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_log = { path = "../bevy_log", version = "^0.6.0"} diff --git a/crates/bevy_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 778272e93fb6b..8f7407240fa40 100644 --- a/crates/bevy_dynamic_plugin/Cargo.toml +++ b/crates/bevy_dynamic_plugin/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} # other libloading = { version = "0.7" } diff --git a/crates/bevy_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index c02f2820f42dc..6889152108e2c 100644 --- a/crates/bevy_gilrs/Cargo.toml +++ b/crates/bevy_gilrs/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index dd05f259db077..e15704a8cc9c3 100644 --- a/crates/bevy_gltf/Cargo.toml +++ b/crates/bevy_gltf/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 1e92df5714103..ddf35e93c6128 100644 --- a/crates/bevy_input/Cargo.toml +++ b/crates/bevy_input/Cargo.toml @@ -14,7 +14,7 @@ serialize = ["serde"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 8d3a655b7093a..9b7b9efa60d37 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -46,7 +46,7 @@ bevy_ci_testing = ["bevy_app/bevy_ci_testing"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index 9182f9d28bda9..adba3d574b328 100644 --- a/crates/bevy_log/Cargo.toml +++ b/crates/bevy_log/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} tracing-subscriber = {version = "0.3.1", features = ["registry", "env-filter"]} diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index 93c6e207b9097..25a9af7264983 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c293d9cfd569b..da843f1111e88 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_derive = { path = "../bevy_derive", version = "^0.6.0"} diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 574717aa28a0d..41d64b7b5e6c3 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_sprite/Cargo.toml b/crates/bevy_sprite/Cargo.toml index 709991c80a458..fd3ee9712c15f 100644 --- a/crates/bevy_sprite/Cargo.toml +++ b/crates/bevy_sprite/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 1bbd307b6cebc..b73c3d88445b6 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -13,7 +13,7 @@ subpixel_glyph_atlas = [] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 1b47cac089f8f..e31a95007947a 100644 --- a/crates/bevy_transform/Cargo.toml +++ b/crates/bevy_transform/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0", features = ["bevy_reflect"] } bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", features = ["bevy"] } diff --git a/crates/bevy_ui/Cargo.toml b/crates/bevy_ui/Cargo.toml index 7c279d6e66278..59553bbfb0a66 100644 --- a/crates/bevy_ui/Cargo.toml +++ b/crates/bevy_ui/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} diff --git a/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index c05111cf15dd9..0c831a65f1d60 100644 --- a/crates/bevy_wgpu/Cargo.toml +++ b/crates/bevy_wgpu/Cargo.toml @@ -14,7 +14,7 @@ trace = ["wgpu/trace"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_asset = { path = "../bevy_asset", version = "^0.6.0"} bevy_core = { path = "../bevy_core", version = "^0.6.0"} bevy_diagnostic = { path = "../bevy_diagnostic", version = "^0.6.0"} diff --git a/crates/bevy_window/Cargo.toml b/crates/bevy_window/Cargo.toml index 1b3c4501d2849..df231b0c0404f 100644 --- a/crates/bevy_window/Cargo.toml +++ b/crates/bevy_window/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} raw-window-handle = "0.3.0" diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 4fd82ddc7b688..00d6cb2cc1b48 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -14,7 +14,7 @@ x11 = ["winit/x11"] [dependencies] # bevy -bevy_app = { path = "../bevy_app", version = "0.5.0" } +bevy_app = { path = "../bevy_app", version = "^0.6.0"} bevy_ecs = { path = "../bevy_ecs", version = "^0.6.0"} bevy_input = { path = "../bevy_input", version = "^0.6.0"} bevy_math = { path = "../bevy_math", version = "^0.6.0"} diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 849c53977fbd4..39faef3f03149 100644 --- a/pipelined/bevy_core_pipeline/Cargo.toml +++ b/pipelined/bevy_core_pipeline/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } +bevy_app = { path = "../../crates/bevy_app", version = "^0.6.0"} bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index afb6f3a2ea6ce..6b59de580f087 100644 --- a/pipelined/bevy_gltf2/Cargo.toml +++ b/pipelined/bevy_gltf2/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } +bevy_app = { path = "../../crates/bevy_app", version = "^0.6.0"} bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.0"} diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 0aef2f62ceb1b..c91738940170d 100644 --- a/pipelined/bevy_pbr2/Cargo.toml +++ b/pipelined/bevy_pbr2/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } +bevy_app = { path = "../../crates/bevy_app", version = "^0.6.0"} bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "^0.6.0"} diff --git a/pipelined/bevy_render2/Cargo.toml b/pipelined/bevy_render2/Cargo.toml index 82bdf4cfad524..52550094aefe1 100644 --- a/pipelined/bevy_render2/Cargo.toml +++ b/pipelined/bevy_render2/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } +bevy_app = { path = "../../crates/bevy_app", version = "^0.6.0"} bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_derive = { path = "../../crates/bevy_derive", version = "^0.6.0"} diff --git a/pipelined/bevy_sprite2/Cargo.toml b/pipelined/bevy_sprite2/Cargo.toml index d06fa33d0d0cb..964cf8bdfbdf3 100644 --- a/pipelined/bevy_sprite2/Cargo.toml +++ b/pipelined/bevy_sprite2/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["bevy"] [dependencies] # bevy -bevy_app = { path = "../../crates/bevy_app", version = "0.5.0" } +bevy_app = { path = "../../crates/bevy_app", version = "^0.6.0"} bevy_asset = { path = "../../crates/bevy_asset", version = "^0.6.0"} bevy_core = { path = "../../crates/bevy_core", version = "^0.6.0"} bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "^0.6.0"} From 61b0e974bca87c265cf270b167c5505c021258d2 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:08 +0000 Subject: [PATCH 39/40] (cargo-release) version 0.6.0 --- Cargo.toml | 2 +- crates/bevy_dylib/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 406e2857c5b14..d5ecf1404bcc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,7 +95,7 @@ subpixel_glyph_atlas = ["bevy_internal/subpixel_glyph_atlas"] bevy_ci_testing = ["bevy_internal/bevy_ci_testing"] [dependencies] -bevy_dylib = { path = "crates/bevy_dylib", version = "0.5.0", default-features = false, optional = true } +bevy_dylib = { path = "crates/bevy_dylib", version = "^0.6.0", default-features = false, optional = true } bevy_internal = { path = "crates/bevy_internal", version = "^0.6.0", default-features = false } [dev-dependencies] diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index ff5615cd4786e..33e2549010200 100644 --- a/crates/bevy_dylib/Cargo.toml +++ b/crates/bevy_dylib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dylib" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Force the Bevy Engine to be dynamically linked for faster linking" homepage = "https://bevyengine.org" From 751b506f227f730b82fb8829488efbca608774e2 Mon Sep 17 00:00:00 2001 From: Bevy Auto Releaser Date: Thu, 9 Dec 2021 10:57:08 +0000 Subject: [PATCH 40/40] (cargo-release) version 0.6.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d5ecf1404bcc7..f5c91dd94e3c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy" -version = "0.5.0" +version = "0.6.0" edition = "2021" categories = ["game-engines", "graphics", "gui", "rendering"] description = "A refreshingly simple data-driven game engine and app framework"