Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Release 0.9.0 #6568

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
Expand Down Expand Up @@ -116,11 +116,11 @@ debug_asset_server = ["bevy_internal/debug_asset_server"]
animation = ["bevy_internal/animation"]

[dependencies]
bevy_dylib = { path = "crates/bevy_dylib", version = "0.9.0-dev", default-features = false, optional = true }
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0-dev", default-features = false }
bevy_dylib = { path = "crates/bevy_dylib", version = "0.9.0", default-features = false, optional = true }
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false }

[target.'cfg(target_arch = "wasm32")'.dependencies]
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0-dev", default-features = false, features = [
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false, features = [
"webgl",
] }

Expand Down
22 changes: 11 additions & 11 deletions crates/bevy_animation/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_animation"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides animation functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,13 +10,13 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" }
bevy_core = { path = "../bevy_core", version = "0.9.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] }
bevy_time = { path = "../bevy_time", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0" }
bevy_core = { path = "../bevy_core", version = "0.9.0" }
bevy_math = { path = "../bevy_math", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_time = { path = "../bevy_time", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" }
10 changes: 5 additions & 5 deletions crates/bevy_app/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_app"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides core App functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -16,10 +16,10 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]

[dependencies]
# bevy
bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", optional = true }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_derive = { path = "../bevy_derive", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", optional = true }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down
18 changes: 9 additions & 9 deletions crates/bevy_asset/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_asset"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides asset functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -15,13 +15,13 @@ debug_asset_server = ["filesystem_watcher"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_log = { path = "../bevy_log", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_log = { path = "../bevy_log", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
serde = { version = "1", features = ["derive"] }
Expand All @@ -45,4 +45,4 @@ ndk-glue = { version = "0.7" }
[dev-dependencies]
futures-lite = "1.4.0"
tempfile = "3.2.0"
bevy_core = { path = "../bevy_core", version = "0.9.0-dev" }
bevy_core = { path = "../bevy_core", version = "0.9.0" }
12 changes: 6 additions & 6 deletions crates/bevy_audio/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_audio"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides audio functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,11 +10,11 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
anyhow = "1.0.4"
Expand Down
14 changes: 7 additions & 7 deletions crates/bevy_core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_core"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides core functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -11,12 +11,12 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev", features = ["bevy_reflect"] }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev", features = ["bevy_reflect"] }
bevy_math = { path = "../bevy_math", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0", features = ["bevy_reflect"] }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0", features = ["bevy_reflect"] }
bevy_math = { path = "../bevy_math", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
bytemuck = "1.5"
Expand Down
20 changes: 10 additions & 10 deletions crates/bevy_core_pipeline/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_core_pipeline"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -18,15 +18,15 @@ webgl = []

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" }
bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev" }
bevy_render = { path = "../bevy_render", version = "0.9.0-dev" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0" }
bevy_derive = { path = "../bevy_derive", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0" }
bevy_render = { path = "../bevy_render", version = "0.9.0" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0" }
bevy_math = { path = "../bevy_math", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

serde = { version = "1", features = ["derive"] }
bitflags = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_derive"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides derive implementations for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -12,7 +12,7 @@ keywords = ["bevy"]
proc-macro = true

[dependencies]
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0-dev" }
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0" }

quote = "1.0"
syn = { version = "1.0", features = ["full"] }
14 changes: 7 additions & 7 deletions crates/bevy_diagnostic/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_diagnostic"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides diagnostic functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -11,9 +11,9 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_log = { path = "../bevy_log", version = "0.9.0-dev" }
bevy_time = { path = "../bevy_time", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_core = { path = "../bevy_core", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_log = { path = "../bevy_log", version = "0.9.0" }
bevy_time = { path = "../bevy_time", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }
bevy_core = { path = "../bevy_core", version = "0.9.0" }
4 changes: 2 additions & 2 deletions crates/bevy_dylib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_dylib"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Force the Bevy Engine to be dynamically linked for faster linking"
homepage = "https://bevyengine.org"
Expand All @@ -12,4 +12,4 @@ keywords = ["bevy"]
crate-type = ["dylib"]

[dependencies]
bevy_internal = { path = "../bevy_internal", version = "0.9.0-dev", default-features = false }
bevy_internal = { path = "../bevy_internal", version = "0.9.0", default-features = false }
4 changes: 2 additions & 2 deletions crates/bevy_dynamic_plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_dynamic_plugin"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
homepage = "https://bevyengine.org"
Expand All @@ -12,7 +12,7 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }

# other
libloading = { version = "0.7" }
Expand Down
12 changes: 6 additions & 6 deletions crates/bevy_ecs/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_ecs"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Bevy Engine's entity component system"
homepage = "https://bevyengine.org"
Expand All @@ -14,11 +14,11 @@ trace = []
default = ["bevy_reflect"]

[dependencies]
bevy_ptr = { path = "../bevy_ptr", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", optional = true }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_ecs_macros = { path = "macros", version = "0.9.0-dev" }
bevy_ptr = { path = "../bevy_ptr", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", optional = true }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }
bevy_ecs_macros = { path = "macros", version = "0.9.0" }

async-channel = "1.4"
event-listener = "2.5"
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_ecs/macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_ecs_macros"
version = "0.9.0-dev"
version = "0.9.0"
description = "Bevy ECS Macros"
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
proc-macro = true

[dependencies]
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0-dev" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.9.0" }

syn = "1.0"
quote = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_encase_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_encase_derive"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Bevy derive macro for encase"
homepage = "https://bevyengine.org"
Expand All @@ -12,5 +12,5 @@ keywords = ["bevy"]
proc-macro = true

[dependencies]
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0-dev" }
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0" }
encase_derive_impl = "0.4.0"
10 changes: 5 additions & 5 deletions crates/bevy_gilrs/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_gilrs"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Gamepad system made using Gilrs for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,10 +10,10 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_input = { path = "../bevy_input", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_input = { path = "../bevy_input", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
gilrs = "0.9.0"
34 changes: 17 additions & 17 deletions crates/bevy_gltf/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_gltf"
version = "0.9.0-dev"
version = "0.9.0"
edition = "2021"
description = "Bevy Engine GLTF loading"
homepage = "https://bevyengine.org"
Expand All @@ -10,22 +10,22 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_animation = { path = "../bevy_animation", version = "0.9.0-dev", optional = true }
bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" }
bevy_core = { path = "../bevy_core", version = "0.9.0-dev" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0-dev" }
bevy_log = { path = "../bevy_log", version = "0.9.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.9.0-dev" }
bevy_pbr = { path = "../bevy_pbr", version = "0.9.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev", features = ["bevy"] }
bevy_render = { path = "../bevy_render", version = "0.9.0-dev" }
bevy_scene = { path = "../bevy_scene", version = "0.9.0-dev" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
bevy_animation = { path = "../bevy_animation", version = "0.9.0", optional = true }
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_asset = { path = "../bevy_asset", version = "0.9.0" }
bevy_core = { path = "../bevy_core", version = "0.9.0" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" }
bevy_log = { path = "../bevy_log", version = "0.9.0" }
bevy_math = { path = "../bevy_math", version = "0.9.0" }
bevy_pbr = { path = "../bevy_pbr", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_render = { path = "../bevy_render", version = "0.9.0" }
bevy_scene = { path = "../bevy_scene", version = "0.9.0" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }

# other
gltf = { version = "1.0.0", default-features = false, features = [
Expand Down