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 diff --git a/Cargo.toml b/Cargo.toml index 7a112614a0d7a..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" @@ -95,8 +95,8 @@ 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_internal = { path = "crates/bevy_internal", version = "0.5.0", default-features = false } +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] anyhow = "1.0.4" @@ -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/bevy_app/Cargo.toml b/crates/bevy_app/Cargo.toml index a65d3435d1a94..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" @@ -15,10 +15,10 @@ default = ["bevy_reflect"] [dependencies] # bevy -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", optional = true } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_derive = { path = "../bevy_derive", version = "^0.6.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"} # other serde = { version = "1.0", features = ["derive"], optional = true } @@ -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 1685b9ee1acd0..3f3dd0a541762 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" @@ -14,13 +14,13 @@ filesystem_watcher = ["notify"] [dependencies] # 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_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_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"} +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"} # other serde = { version = "1", features = ["derive"] } diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index ca5c2556fae6e..f40ef58f15c68 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" @@ -10,11 +10,11 @@ keywords = ["bevy"] [dependencies] # 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_utils = { path = "../bevy_utils", 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"] } +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 c94dd5ffc8320..4da34b07f4aa0 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" @@ -11,13 +11,13 @@ 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_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_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"} +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"} # other bytemuck = "1.5" diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index ee774f0db9774..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" @@ -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_diagnostic/Cargo.toml b/crates/bevy_diagnostic/Cargo.toml index fdbb909522c97..371ce19cbed9e 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" @@ -11,8 +11,8 @@ keywords = ["bevy"] [dependencies] # 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_log = { path = "../bevy_log", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", 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"} +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} diff --git a/crates/bevy_dylib/Cargo.toml b/crates/bevy_dylib/Cargo.toml index 6a12d11681840..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" @@ -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_dynamic_plugin/Cargo.toml b/crates/bevy_dynamic_plugin/Cargo.toml index 4375790aadd56..8f7407240fa40 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" @@ -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_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index 7332197560a70..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" @@ -14,10 +14,10 @@ trace = [] 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_ecs_macros = { path = "macros", version = "0.5.0" } +bevy_reflect = { path = "../bevy_reflect", version = "^0.6.0", optional = true } +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"} async-channel = "1.4" fixedbitset = "0.4" diff --git a/crates/bevy_ecs/macros/Cargo.toml b/crates/bevy_ecs/macros/Cargo.toml index 69c988afa9481..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" @@ -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_gilrs/Cargo.toml b/crates/bevy_gilrs/Cargo.toml index b5bc1b6f65b44..6889152108e2c 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" @@ -10,10 +10,10 @@ keywords = ["bevy"] [dependencies] # 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_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"} # other -gilrs = "0.8.0" \ No newline at end of file +gilrs = "0.8.0" diff --git a/crates/bevy_gltf/Cargo.toml b/crates/bevy_gltf/Cargo.toml index 850c031633ada..e15704a8cc9c3 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" @@ -10,17 +10,17 @@ keywords = ["bevy"] [dependencies] # 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_pbr = { path = "../bevy_pbr", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_scene = { path = "../bevy_scene", version = "0.5.0" } -bevy_log = { path = "../bevy_log", 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"} +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"} +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.6.0"} # other gltf = { version = "0.16.0", default-features = false, features = ["utils", "names", "KHR_materials_unlit"] } diff --git a/crates/bevy_input/Cargo.toml b/crates/bevy_input/Cargo.toml index 718b3a6b38da6..ddf35e93c6128 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" @@ -14,10 +14,10 @@ serialize = ["serde"] [dependencies] # bevy -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_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"} # other serde = { version = "1", features = ["derive"], optional = true } diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 9f062958177dd..9b7b9efa60d37 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" @@ -46,38 +46,38 @@ 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_core = { path = "../bevy_core", version = "0.5.0" } -bevy_derive = { path = "../bevy_derive", version = "0.5.0" } -bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_input = { path = "../bevy_input", version = "0.5.0" } -bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_scene = { path = "../bevy_scene", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_tasks = { path = "../bevy_tasks", version = "0.5.0" } +bevy_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"} +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.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"} +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"} +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" } -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_render2 = { path = "../../pipelined/bevy_render2", optional = true, version = "0.5.0" } -bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.5.0" } -bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.5.0" } -bevy_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" } -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_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.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"} +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.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.6.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] ndk-glue = {version = "0.4", features = ["logger"]} diff --git a/crates/bevy_log/Cargo.toml b/crates/bevy_log/Cargo.toml index d7f45cf6ec224..adba3d574b328 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" @@ -9,8 +9,8 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -bevy_app = { path = "../bevy_app", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", 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"]} tracing-chrome = { version = "0.4.0", optional = true } @@ -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"} 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_math/Cargo.toml b/crates/bevy_math/Cargo.toml index f3cc0b02d3db1..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" @@ -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..25a9af7264983 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" @@ -10,14 +10,14 @@ keywords = ["bevy"] [dependencies] # 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_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_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"} +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_transform = { path = "../bevy_transform", version = "^0.6.0"} # other # direct dependency required for derive macro diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index ab9b8cbd23265..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" @@ -14,8 +14,8 @@ bevy = ["glam", "smallvec"] [dependencies] # bevy -bevy_reflect_derive = { path = "bevy_reflect_derive", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +bevy_reflect_derive = { path = "bevy_reflect_derive", version = "^0.6.0"} +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other erased-serde = "0.3" diff --git a/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml b/crates/bevy_reflect/bevy_reflect_derive/Cargo.toml index 294cc155bc80f..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" @@ -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" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c3ac5c6167dc0..da843f1111e88 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" @@ -10,16 +10,16 @@ keywords = ["bevy"] [dependencies] # 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_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +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"} +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.6.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..41d64b7b5e6c3 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" @@ -10,12 +10,12 @@ keywords = ["bevy"] [dependencies] # 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_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", 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"] } +bevy_transform = { path = "../bevy_transform", version = "^0.6.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..fd3ee9712c15f 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" @@ -10,17 +10,17 @@ keywords = ["bevy"] [dependencies] # 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_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } +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"} +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"} +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"} # other # direct dependency required for derive macro 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" diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 613e50f93be40..b73c3d88445b6 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" @@ -13,17 +13,17 @@ subpixel_glyph_atlas = [] [dependencies] # 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_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +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"} +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_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"} # other anyhow = "1.0.4" diff --git a/crates/bevy_transform/Cargo.toml b/crates/bevy_transform/Cargo.toml index 567ba74aad1bd..e31a95007947a 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" @@ -10,11 +10,11 @@ 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_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_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"] } +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..59553bbfb0a66 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" @@ -10,20 +10,20 @@ keywords = ["bevy"] [dependencies] # 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_input = { path = "../bevy_input", version = "0.5.0" } -bevy_log = { path = "../bevy_log", version = "0.5.0" } -bevy_math = { path = "../bevy_math", version = "0.5.0" } -bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] } -bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_sprite = { path = "../bevy_sprite", version = "0.5.0" } -bevy_text = { path = "../bevy_text", version = "0.5.0" } -bevy_transform = { path = "../bevy_transform", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +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"} +bevy_input = { path = "../bevy_input", version = "^0.6.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"} +bevy_sprite = { path = "../bevy_sprite", version = "^0.6.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"} # other stretch = "0.3.2" diff --git a/crates/bevy_utils/Cargo.toml b/crates/bevy_utils/Cargo.toml index 4289f4afca5ce..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" @@ -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/crates/bevy_wgpu/Cargo.toml b/crates/bevy_wgpu/Cargo.toml index e1bc40f8d20d6..0c831a65f1d60 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" @@ -14,15 +14,15 @@ trace = ["wgpu/trace"] [dependencies] # 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_diagnostic = { path = "../bevy_diagnostic", version = "0.5.0" } -bevy_ecs = { path = "../bevy_ecs", version = "0.5.0" } -bevy_render = { path = "../bevy_render", version = "0.5.0" } -bevy_window = { path = "../bevy_window", version = "0.5.0" } -bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } -bevy_utils = { path = "../bevy_utils", version = "0.5.0" } +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"} +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.6.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..df231b0c0404f 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" @@ -10,9 +10,9 @@ keywords = ["bevy"] [dependencies] # 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_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" # other diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index ad3e58c0d65ba..00d6cb2cc1b48 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" @@ -14,12 +14,12 @@ x11 = ["winit/x11"] [dependencies] # 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_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_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"} +bevy_window = { path = "../bevy_window", version = "^0.6.0"} +bevy_utils = { path = "../bevy_utils", version = "^0.6.0"} # other winit = { version = "0.25.0", default-features = false } diff --git a/crates/crevice/Cargo.toml b/crates/crevice/Cargo.toml index 76d473d0c501c..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" @@ -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" diff --git a/pipelined/bevy_core_pipeline/Cargo.toml b/pipelined/bevy_core_pipeline/Cargo.toml index 35dec3902346f..39faef3f03149 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 ", @@ -14,9 +14,9 @@ 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_core = { path = "../../crates/bevy_core", version = "0.5.0" } -bevy_ecs = { path = "../../crates/bevy_ecs", version = "0.5.0" } -bevy_render2 = { path = "../bevy_render2", 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"} +bevy_render2 = { path = "../bevy_render2", version = "^0.6.0"} diff --git a/pipelined/bevy_gltf2/Cargo.toml b/pipelined/bevy_gltf2/Cargo.toml index fb0f2badbdfbd..6b59de580f087 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 ", @@ -14,18 +14,18 @@ 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_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_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_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" } +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"} +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"} +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.6.0"} # other gltf = { version = "0.16.0", default-features = false, features = ["utils", "names", "KHR_materials_unlit"] } diff --git a/pipelined/bevy_pbr2/Cargo.toml b/pipelined/bevy_pbr2/Cargo.toml index 6f10fe814b70f..c91738940170d 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 ", @@ -14,21 +14,21 @@ 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_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_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_window = { path = "../../crates/bevy_window", 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"} +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.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"} # other 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 87b00c16afd20..52550094aefe1 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 ", @@ -14,16 +14,16 @@ 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_core = { path = "../../crates/bevy_core", version = "0.5.0" } -bevy_derive = { path = "../../crates/bevy_derive", 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_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_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"} +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.6.0"} +bevy_utils = { path = "../../crates/bevy_utils", version = "^0.6.0"} # rendering image = { version = "0.23.12", default-features = false } @@ -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 9a52e71199495..964cf8bdfbdf3 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 ", @@ -14,23 +14,23 @@ 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_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_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_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"} +bevy_ecs = { path = "../../crates/bevy_ecs", version = "^0.6.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", ] } -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_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"} # 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"