Skip to content

Commit

Permalink
Release 0.15.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Oct 27, 2024
1 parent 222483d commit 8457b4f
Show file tree
Hide file tree
Showing 52 changed files with 410 additions and 410 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
Expand Down Expand Up @@ -448,11 +448,11 @@ custom_cursor = ["bevy_internal/custom_cursor"]
ghost_nodes = ["bevy_internal/ghost_nodes"]

[dependencies]
bevy_internal = { path = "crates/bevy_internal", version = "0.15.0-rc.1", default-features = false }
bevy_internal = { path = "crates/bevy_internal", version = "0.15.0-rc.2", default-features = false }

# Wasm does not support dynamic linking.
[target.'cfg(not(target_family = "wasm"))'.dependencies]
bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.0-rc.1", default-features = false, optional = true }
bevy_dylib = { path = "crates/bevy_dylib", version = "0.15.0-rc.2", default-features = false, optional = true }

[dev-dependencies]
rand = "0.8.0"
Expand All @@ -462,7 +462,7 @@ flate2 = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bytemuck = "1.7"
bevy_render = { path = "crates/bevy_render", version = "0.15.0-rc.1", default-features = false }
bevy_render = { path = "crates/bevy_render", version = "0.15.0-rc.2", default-features = false }
# Needed to poll Task examples
futures-lite = "2.0.1"
async-std = "1.13"
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_a11y/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_a11y"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides accessibility support for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,10 +10,10 @@ keywords = ["bevy", "accessibility", "a11y"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.1" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1" }
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" }

accesskit = "0.16"

Expand Down
32 changes: 16 additions & 16 deletions crates/bevy_animation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_animation"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides animation functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,24 +10,24 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_animation_derive = { path = "derive", version = "0.15.0-rc.1" }
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.1" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.1" }
bevy_color = { path = "../bevy_color", version = "0.15.0-rc.1" }
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.1" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.1" }
bevy_log = { path = "../bevy_log", version = "0.15.0-rc.1" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", features = [
bevy_animation_derive = { path = "derive", version = "0.15.0-rc.2" }
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" }
bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" }
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" }
bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [
"bevy",
"petgraph",
] }
bevy_render = { path = "../bevy_render", version = "0.15.0-rc.1" }
bevy_time = { path = "../bevy_time", version = "0.15.0-rc.1" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.1" }
bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" }
bevy_time = { path = "../bevy_time", version = "0.15.0-rc.2" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" }

# other
petgraph = { version = "0.6", features = ["serde-1"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_animation/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_animation_derive"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Derive implementations for bevy_animation"
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.15.0-rc.1" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-rc.2" }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/bevy_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_app"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides core App functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -21,11 +21,11 @@ reflect_functions = [

[dependencies]
# bevy
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", optional = true }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.1" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", optional = true }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" }

# other
downcast-rs = "1.2.0"
Expand Down
20 changes: 10 additions & 10 deletions crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_asset"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides asset functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -19,14 +19,14 @@ watch = []
trace = []

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.1" }
bevy_asset_macros = { path = "macros", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", features = [
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" }
bevy_asset_macros = { path = "macros", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [
"uuid",
] }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.1" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }

stackfuture = "0.3"
atomicow = "1.0"
Expand All @@ -52,7 +52,7 @@ derive_more = { version = "1", default-features = false, features = [
uuid = { version = "1.0", features = ["v4"] }

[target.'cfg(target_os = "android")'.dependencies]
bevy_window = { path = "../bevy_window", version = "0.15.0-rc.1" }
bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2" }
Expand All @@ -68,8 +68,8 @@ js-sys = "0.3"
notify-debouncer-full = { version = "0.3.1", optional = true }

[dev-dependencies]
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.1" }
bevy_log = { path = "../bevy_log", version = "0.15.0-rc.1" }
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" }
bevy_log = { path = "../bevy_log", version = "0.15.0-rc.2" }

[lints]
workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_asset/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_asset_macros"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Derive implementations for bevy_asset"
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.15.0-rc.1" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.0-rc.2" }

syn = "2.0"
proc-macro2 = "1.0"
Expand Down
20 changes: 10 additions & 10 deletions crates/bevy_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_audio"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides audio functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,17 +10,17 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.1" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.1" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", features = [
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-rc.2" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [
"bevy",
] }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.1" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.1" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }

# other
rodio = { version = "0.19", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_color/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_color"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Types for representing and manipulating color values"
homepage = "https://bevyengine.org"
Expand All @@ -10,10 +10,10 @@ keywords = ["bevy", "color"]
rust-version = "1.76.0"

[dependencies]
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.1", default-features = false, features = [
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2", default-features = false, features = [
"curve",
] }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", features = [
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [
"bevy",
], optional = true }
bytemuck = { version = "1", features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/bevy_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_core"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
description = "Provides core 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.15.0-rc.1", default-features = false }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1", features = [
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2", default-features = false }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2", default-features = false }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2", features = [
"bevy",
], optional = true }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.1" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.15.0-rc.2" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }

# other
serde = { version = "1.0", optional = true }
Expand Down
28 changes: 14 additions & 14 deletions crates/bevy_core_pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_core_pipeline"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
edition = "2021"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -22,19 +22,19 @@ smaa_luts = ["bevy_render/ktx2", "bevy_image/ktx2", "bevy_image/zstd"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.1" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.1" }
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.1" }
bevy_color = { path = "../bevy_color", version = "0.15.0-rc.1" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.1" }
bevy_image = { path = "../bevy_image", version = "0.15.0-rc.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.1" }
bevy_render = { path = "../bevy_render", version = "0.15.0-rc.1" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.1" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.1" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
bevy_window = { path = "../bevy_window", version = "0.15.0-rc.1" }
bevy_app = { path = "../bevy_app", version = "0.15.0-rc.2" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-rc.2" }
bevy_core = { path = "../bevy_core", version = "0.15.0-rc.2" }
bevy_color = { path = "../bevy_color", version = "0.15.0-rc.2" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-rc.2" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-rc.2" }
bevy_image = { path = "../bevy_image", version = "0.15.0-rc.2" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-rc.2" }
bevy_render = { path = "../bevy_render", version = "0.15.0-rc.2" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.2" }
bevy_math = { path = "../bevy_math", version = "0.15.0-rc.2" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.2" }
bevy_window = { path = "../bevy_window", version = "0.15.0-rc.2" }

serde = { version = "1", features = ["derive"] }
bitflags = "2.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_derive"
version = "0.15.0-rc.1"
version = "0.15.0-rc.2"
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.15.0-rc.1" }
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.0-rc.2" }

quote = "1.0"
syn = { version = "2.0", features = ["full"] }
Expand Down
Loading

0 comments on commit 8457b4f

Please sign in to comment.