Skip to content

Commit

Permalink
Release 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Aug 2, 2024
1 parent c217238 commit d65eb39
Show file tree
Hide file tree
Showing 48 changed files with 351 additions and 351 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
Expand Down Expand Up @@ -347,11 +347,11 @@ ios_simulator = ["bevy_internal/ios_simulator"]
bevy_state = ["bevy_internal/bevy_state"]

[dependencies]
bevy_internal = { path = "crates/bevy_internal", version = "0.14.0", default-features = false }
bevy_internal = { path = "crates/bevy_internal", version = "0.14.1", default-features = false }

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

[dev-dependencies]
rand = "0.8.0"
Expand Down
8 changes: 4 additions & 4 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.14.0"
version = "0.14.1"
edition = "2021"
description = "Provides accessibility support for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,9 +10,9 @@ keywords = ["bevy", "accessibility", "a11y"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.14.0" }
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }

accesskit = "0.14"

Expand Down
30 changes: 15 additions & 15 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.14.0"
version = "0.14.1"
edition = "2021"
description = "Provides animation functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,23 +10,23 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.14.0" }
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
bevy_color = { path = "../bevy_color", version = "0.14.1" }
bevy_core = { path = "../bevy_core", version = "0.14.0" }
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
bevy_log = { path = "../bevy_log", version = "0.14.0" }
bevy_math = { path = "../bevy_math", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
bevy_color = { path = "../bevy_color", version = "0.14.2" }
bevy_core = { path = "../bevy_core", version = "0.14.1" }
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
bevy_log = { path = "../bevy_log", version = "0.14.1" }
bevy_math = { path = "../bevy_math", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
"bevy",
"petgraph",
] }
bevy_render = { path = "../bevy_render", version = "0.14.0" }
bevy_time = { path = "../bevy_time", version = "0.14.0" }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0" }
bevy_render = { path = "../bevy_render", version = "0.14.1" }
bevy_time = { path = "../bevy_time", version = "0.14.1" }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }

# other
fixedbitset = "0.5"
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.14.0"
version = "0.14.1"
edition = "2021"
description = "Provides core App functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -16,11 +16,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]

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

# 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.14.0"
version = "0.14.1"
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.14.0" }
bevy_asset_macros = { path = "macros", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_asset_macros = { path = "macros", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
"uuid",
] }
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }

async-broadcast = "0.5"
async-fs = "2.0"
Expand All @@ -43,7 +43,7 @@ thiserror = "1.0"
uuid = { version = "1.0", features = ["v4"] }

[target.'cfg(target_os = "android")'.dependencies]
bevy_winit = { path = "../bevy_winit", version = "0.14.0" }
bevy_winit = { path = "../bevy_winit", version = "0.14.1" }

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

[dev-dependencies]
bevy_core = { path = "../bevy_core", version = "0.14.0" }
bevy_log = { path = "../bevy_log", version = "0.14.0" }
bevy_core = { path = "../bevy_core", version = "0.14.1" }
bevy_log = { path = "../bevy_log", version = "0.14.1" }

[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.14.0"
version = "0.14.1"
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.14.0" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.1" }

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.14.0"
version = "0.14.1"
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.14.0" }
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0" }
bevy_math = { path = "../bevy_math", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
bevy_math = { path = "../bevy_math", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
"bevy",
] }
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }

# other
rodio = { version = "0.18", 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.14.1"
version = "0.14.2"
edition = "2021"
description = "Types for representing and manipulating color values"
homepage = "https://bevyengine.org"
Expand All @@ -10,8 +10,8 @@ keywords = ["bevy", "color"]
rust-version = "1.76.0"

[dependencies]
bevy_math = { path = "../bevy_math", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
bevy_math = { path = "../bevy_math", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
"bevy",
] }
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.14.0"
version = "0.14.1"
edition = "2021"
description = "Provides core 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.14.0", features = [
bevy_app = { path = "../bevy_app", version = "0.14.1", features = [
"bevy_reflect",
] }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0", features = [
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1", features = [
"bevy_reflect",
] }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1", features = [
"bevy",
] }
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.14.1" }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }

# other
serde = { version = "1.0", optional = true }
Expand Down
24 changes: 12 additions & 12 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.14.0"
version = "0.14.1"
edition = "2021"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -22,17 +22,17 @@ smaa_luts = ["bevy_render/ktx2", "bevy_render/zstd"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.14.0" }
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
bevy_core = { path = "../bevy_core", version = "0.14.0" }
bevy_color = { path = "../bevy_color", version = "0.14.1" }
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0" }
bevy_render = { path = "../bevy_render", version = "0.14.0" }
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
bevy_math = { path = "../bevy_math", version = "0.14.0" }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
bevy_core = { path = "../bevy_core", version = "0.14.1" }
bevy_color = { path = "../bevy_color", version = "0.14.2" }
bevy_derive = { path = "../bevy_derive", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
bevy_render = { path = "../bevy_render", version = "0.14.1" }
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
bevy_math = { path = "../bevy_math", version = "0.14.1" }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }

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.14.0"
version = "0.14.1"
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.14.0" }
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.14.1" }

quote = "1.0"
syn = { version = "2.0", features = ["full"] }
Expand Down
42 changes: 21 additions & 21 deletions crates/bevy_dev_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_dev_tools"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "Collection of developer tools for the Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -15,26 +15,26 @@ bevy_ui_debug = []

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.14.0" }
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
bevy_color = { path = "../bevy_color", version = "0.14.1" }
bevy_core = { path = "../bevy_core", version = "0.14.0" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.0" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0" }
bevy_input = { path = "../bevy_input", version = "0.14.0" }
bevy_math = { path = "../bevy_math", version = "0.14.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0" }
bevy_render = { path = "../bevy_render", version = "0.14.0" }
bevy_time = { path = "../bevy_time", version = "0.14.0" }
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
bevy_ui = { path = "../bevy_ui", version = "0.14.0", features = ["bevy_text"] }
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_window = { path = "../bevy_window", version = "0.14.0" }
bevy_text = { path = "../bevy_text", version = "0.14.0" }
bevy_state = { path = "../bevy_state", version = "0.14.0" }
bevy_app = { path = "../bevy_app", version = "0.14.1" }
bevy_asset = { path = "../bevy_asset", version = "0.14.1" }
bevy_color = { path = "../bevy_color", version = "0.14.2" }
bevy_core = { path = "../bevy_core", version = "0.14.1" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.14.1" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.14.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.1" }
bevy_gizmos = { path = "../bevy_gizmos", version = "0.14.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.1" }
bevy_input = { path = "../bevy_input", version = "0.14.1" }
bevy_math = { path = "../bevy_math", version = "0.14.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.1" }
bevy_render = { path = "../bevy_render", version = "0.14.1" }
bevy_time = { path = "../bevy_time", version = "0.14.1" }
bevy_transform = { path = "../bevy_transform", version = "0.14.1" }
bevy_ui = { path = "../bevy_ui", version = "0.14.1", features = ["bevy_text"] }
bevy_utils = { path = "../bevy_utils", version = "0.14.1" }
bevy_window = { path = "../bevy_window", version = "0.14.1" }
bevy_text = { path = "../bevy_text", version = "0.14.1" }
bevy_state = { path = "../bevy_state", version = "0.14.1" }

# other
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down
Loading

0 comments on commit d65eb39

Please sign in to comment.