Skip to content

Commit

Permalink
Release: 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Mar 18, 2024
1 parent a66bdd0 commit 5521570
Show file tree
Hide file tree
Showing 46 changed files with 311 additions and 311 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
Expand Down Expand Up @@ -305,8 +305,8 @@ embedded_watcher = ["bevy_internal/embedded_watcher"]
bevy_debug_stepping = ["bevy_internal/bevy_debug_stepping"]

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

[dev-dependencies]
rand = "0.8.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_a11y/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_a11y"
version = "0.13.0"
version = "0.13.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.13.0" }
bevy_derive = { path = "../bevy_derive", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }

accesskit = "0.12"

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

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_asset = { path = "../bevy_asset", version = "0.13.0" }
bevy_core = { path = "../bevy_core", version = "0.13.0" }
bevy_math = { path = "../bevy_math", version = "0.13.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.0", features = [
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
bevy_core = { path = "../bevy_core", version = "0.13.1" }
bevy_math = { path = "../bevy_math", version = "0.13.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [
"bevy",
] }
bevy_render = { path = "../bevy_render", version = "0.13.0" }
bevy_time = { path = "../bevy_time", version = "0.13.0" }
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_transform = { path = "../bevy_transform", version = "0.13.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.0" }
bevy_render = { path = "../bevy_render", version = "0.13.1" }
bevy_time = { path = "../bevy_time", version = "0.13.1" }
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" }

[lints]
workspace = true
12 changes: 6 additions & 6 deletions crates/bevy_app/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_app"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Provides core App functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -17,11 +17,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]

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

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

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_asset_macros = { path = "macros", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_log = { path = "../bevy_log", version = "0.13.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.13.0" }
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_asset_macros = { path = "macros", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
bevy_log = { path = "../bevy_log", version = "0.13.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" }
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }

async-broadcast = "0.5"
async-fs = "2.0"
Expand All @@ -40,7 +40,7 @@ serde = { version = "1", features = ["derive"] }
thiserror = "1.0"

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

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

[dev-dependencies]
bevy_core = { path = "../bevy_core", version = "0.13.0" }
bevy_core = { path = "../bevy_core", version = "0.13.1" }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/bevy_asset/macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_asset_macros"
version = "0.13.0"
version = "0.13.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.13.0" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" }

syn = "2.0"
proc-macro2 = "1.0"
Expand Down
18 changes: 9 additions & 9 deletions crates/bevy_audio/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_audio"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Provides audio functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -10,16 +10,16 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_asset = { path = "../bevy_asset", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_math = { path = "../bevy_math", version = "0.13.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.0", features = [
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
bevy_math = { path = "../bevy_math", version = "0.13.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [
"bevy",
] }
bevy_transform = { path = "../bevy_transform", version = "0.13.0" }
bevy_derive = { path = "../bevy_derive", version = "0.13.0" }
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }

# other
rodio = { version = "0.17", default-features = false }
Expand Down
14 changes: 7 additions & 7 deletions crates/bevy_core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_core"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Provides core functionality for Bevy Engine"
homepage = "https://bevyengine.org"
Expand All @@ -11,18 +11,18 @@ keywords = ["bevy"]

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

# other
bytemuck = "1.5"
Expand Down
24 changes: 12 additions & 12 deletions crates/bevy_core_pipeline/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_core_pipeline"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -21,17 +21,17 @@ tonemapping_luts = ["bevy_render/ktx2", "bevy_render/zstd"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_asset = { path = "../bevy_asset", version = "0.13.0" }
bevy_core = { path = "../bevy_core", version = "0.13.0" }
bevy_derive = { path = "../bevy_derive", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_log = { path = "../bevy_log", version = "0.13.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.0" }
bevy_render = { path = "../bevy_render", version = "0.13.0" }
bevy_transform = { path = "../bevy_transform", version = "0.13.0" }
bevy_math = { path = "../bevy_math", version = "0.13.0" }
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
bevy_core = { path = "../bevy_core", version = "0.13.1" }
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
bevy_log = { path = "../bevy_log", version = "0.13.1" }
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" }
bevy_render = { path = "../bevy_render", version = "0.13.1" }
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
bevy_math = { path = "../bevy_math", version = "0.13.1" }
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }

serde = { version = "1", features = ["derive"] }
bitflags = "2.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_derive"
version = "0.13.0"
version = "0.13.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.13.0" }
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.1" }

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

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_core = { path = "../bevy_core", version = "0.13.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
bevy_log = { path = "../bevy_log", version = "0.13.0" }
bevy_time = { path = "../bevy_time", version = "0.13.0" }
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
bevy_app = { path = "../bevy_app", version = "0.13.1" }
bevy_core = { path = "../bevy_core", version = "0.13.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
bevy_log = { path = "../bevy_log", version = "0.13.1" }
bevy_time = { path = "../bevy_time", version = "0.13.1" }
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }

const-fnv1a-hash = "1.1.0"

Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_dylib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_dylib"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Force the Bevy Engine to be dynamically linked for faster linking"
homepage = "https://bevyengine.org"
Expand All @@ -12,7 +12,7 @@ keywords = ["bevy"]
crate-type = ["dylib"]

[dependencies]
bevy_internal = { path = "../bevy_internal", version = "0.13.0", default-features = false }
bevy_internal = { path = "../bevy_internal", version = "0.13.1", default-features = false }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/bevy_dynamic_plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bevy_dynamic_plugin"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
homepage = "https://bevyengine.org"
Expand All @@ -10,7 +10,7 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.13.0" }
bevy_app = { path = "../bevy_app", version = "0.13.1" }

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

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

async-channel = "2.1.0"
thread_local = "1.1.4"
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.13.0"
version = "0.13.1"
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.13.0" }
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" }

syn = "2.0"
quote = "1.0"
Expand Down

0 comments on commit 5521570

Please sign in to comment.