Skip to content

Commit aa80e2d

Browse files
committed
Release: 0.13.2
1 parent 5a82199 commit aa80e2d

File tree

46 files changed

+311
-311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+311
-311
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -305,8 +305,8 @@ embedded_watcher = ["bevy_internal/embedded_watcher"]
305305
bevy_debug_stepping = ["bevy_internal/bevy_debug_stepping"]
306306

307307
[dependencies]
308-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.13.1", default-features = false, optional = true }
309-
bevy_internal = { path = "crates/bevy_internal", version = "0.13.1", default-features = false }
308+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.13.2", default-features = false, optional = true }
309+
bevy_internal = { path = "crates/bevy_internal", version = "0.13.2", default-features = false }
310310

311311
[dev-dependencies]
312312
rand = "0.8.0"

crates/bevy_a11y/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_a11y"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides accessibility support for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,9 +10,9 @@ keywords = ["bevy", "accessibility", "a11y"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
14-
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
13+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
14+
bevy_derive = { path = "../bevy_derive", version = "0.13.2" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
1616

1717
accesskit = "0.12"
1818

crates/bevy_animation/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_animation"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides animation functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,19 +10,19 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
15-
bevy_core = { path = "../bevy_core", version = "0.13.1" }
16-
bevy_math = { path = "../bevy_math", version = "0.13.1" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.13.2" }
15+
bevy_core = { path = "../bevy_core", version = "0.13.2" }
16+
bevy_math = { path = "../bevy_math", version = "0.13.2" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [
1818
"bevy",
1919
] }
20-
bevy_render = { path = "../bevy_render", version = "0.13.1" }
21-
bevy_time = { path = "../bevy_time", version = "0.13.1" }
22-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
23-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
24-
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
25-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.1" }
20+
bevy_render = { path = "../bevy_render", version = "0.13.2" }
21+
bevy_time = { path = "../bevy_time", version = "0.13.2" }
22+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
23+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
24+
bevy_transform = { path = "../bevy_transform", version = "0.13.2" }
25+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.2" }
2626

2727
[lints]
2828
workspace = true

crates/bevy_app/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -17,11 +17,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]
1717

1818
[dependencies]
1919
# bevy
20-
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
21-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", default-features = false }
22-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", optional = true }
23-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
24-
bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" }
20+
bevy_derive = { path = "../bevy_derive", version = "0.13.2" }
21+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", default-features = false }
22+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", optional = true }
23+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
24+
bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" }
2525

2626
# other
2727
serde = { version = "1.0", features = ["derive"], optional = true }

crates/bevy_asset/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -18,13 +18,13 @@ asset_processor = []
1818
watch = []
1919

2020
[dependencies]
21-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
22-
bevy_asset_macros = { path = "macros", version = "0.13.1" }
23-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
24-
bevy_log = { path = "../bevy_log", version = "0.13.1" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" }
26-
bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" }
27-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
21+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
22+
bevy_asset_macros = { path = "macros", version = "0.13.2" }
23+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
24+
bevy_log = { path = "../bevy_log", version = "0.13.2" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2" }
26+
bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" }
27+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
2828

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

4242
[target.'cfg(target_os = "android")'.dependencies]
43-
bevy_winit = { path = "../bevy_winit", version = "0.13.1" }
43+
bevy_winit = { path = "../bevy_winit", version = "0.13.2" }
4444

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

5454
[dev-dependencies]
55-
bevy_core = { path = "../bevy_core", version = "0.13.1" }
55+
bevy_core = { path = "../bevy_core", version = "0.13.2" }
5656

5757
[lints]
5858
workspace = true

crates/bevy_asset/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset_macros"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Derive implementations for bevy_asset"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" }
1616

1717
syn = "2.0"
1818
proc-macro2 = "1.0"

crates/bevy_audio/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_audio"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,16 +10,16 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
16-
bevy_math = { path = "../bevy_math", version = "0.13.1" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.13.2" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
16+
bevy_math = { path = "../bevy_math", version = "0.13.2" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [
1818
"bevy",
1919
] }
20-
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
21-
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
22-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
20+
bevy_transform = { path = "../bevy_transform", version = "0.13.2" }
21+
bevy_derive = { path = "../bevy_derive", version = "0.13.2" }
22+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
2323

2424
# other
2525
rodio = { version = "0.17", default-features = false }

crates/bevy_core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides core functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -11,18 +11,18 @@ keywords = ["bevy"]
1111

1212
[dependencies]
1313
# bevy
14-
bevy_app = { path = "../bevy_app", version = "0.13.1", features = [
14+
bevy_app = { path = "../bevy_app", version = "0.13.2", features = [
1515
"bevy_reflect",
1616
] }
17-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1", features = [
17+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2", features = [
1818
"bevy_reflect",
1919
] }
20-
bevy_math = { path = "../bevy_math", version = "0.13.1" }
21-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", features = [
20+
bevy_math = { path = "../bevy_math", version = "0.13.2" }
21+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", features = [
2222
"bevy",
2323
] }
24-
bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" }
25-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
24+
bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" }
25+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
2626

2727
# other
2828
bytemuck = "1.5"

crates/bevy_core_pipeline/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core_pipeline"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <[email protected]>",
@@ -21,17 +21,17 @@ tonemapping_luts = ["bevy_render/ktx2", "bevy_render/zstd"]
2121

2222
[dependencies]
2323
# bevy
24-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
25-
bevy_asset = { path = "../bevy_asset", version = "0.13.1" }
26-
bevy_core = { path = "../bevy_core", version = "0.13.1" }
27-
bevy_derive = { path = "../bevy_derive", version = "0.13.1" }
28-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
29-
bevy_log = { path = "../bevy_log", version = "0.13.1" }
30-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1" }
31-
bevy_render = { path = "../bevy_render", version = "0.13.1" }
32-
bevy_transform = { path = "../bevy_transform", version = "0.13.1" }
33-
bevy_math = { path = "../bevy_math", version = "0.13.1" }
34-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
24+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
25+
bevy_asset = { path = "../bevy_asset", version = "0.13.2" }
26+
bevy_core = { path = "../bevy_core", version = "0.13.2" }
27+
bevy_derive = { path = "../bevy_derive", version = "0.13.2" }
28+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
29+
bevy_log = { path = "../bevy_log", version = "0.13.2" }
30+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2" }
31+
bevy_render = { path = "../bevy_render", version = "0.13.2" }
32+
bevy_transform = { path = "../bevy_transform", version = "0.13.2" }
33+
bevy_math = { path = "../bevy_math", version = "0.13.2" }
34+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
3535

3636
serde = { version = "1", features = ["derive"] }
3737
bitflags = "2.3"

crates/bevy_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_derive"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides derive implementations for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.1" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.13.2" }
1616

1717
quote = "1.0"
1818
syn = { version = "2.0", features = ["full"] }

crates/bevy_diagnostic/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_diagnostic"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides diagnostic functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -14,12 +14,12 @@ dynamic_linking = []
1414

1515
[dependencies]
1616
# bevy
17-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
18-
bevy_core = { path = "../bevy_core", version = "0.13.1" }
19-
bevy_ecs = { path = "../bevy_ecs", version = "0.13.1" }
20-
bevy_log = { path = "../bevy_log", version = "0.13.1" }
21-
bevy_time = { path = "../bevy_time", version = "0.13.1" }
22-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
17+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
18+
bevy_core = { path = "../bevy_core", version = "0.13.2" }
19+
bevy_ecs = { path = "../bevy_ecs", version = "0.13.2" }
20+
bevy_log = { path = "../bevy_log", version = "0.13.2" }
21+
bevy_time = { path = "../bevy_time", version = "0.13.2" }
22+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
2323

2424
const-fnv1a-hash = "1.1.0"
2525

crates/bevy_dylib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dylib"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Force the Bevy Engine to be dynamically linked for faster linking"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212
crate-type = ["dylib"]
1313

1414
[dependencies]
15-
bevy_internal = { path = "../bevy_internal", version = "0.13.1", default-features = false }
15+
bevy_internal = { path = "../bevy_internal", version = "0.13.2", default-features = false }
1616

1717
[lints]
1818
workspace = true

crates/bevy_dynamic_plugin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dynamic_plugin"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
66
homepage = "https://bevyengine.org"
@@ -10,7 +10,7 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.13.1" }
13+
bevy_app = { path = "../bevy_app", version = "0.13.2" }
1414

1515
# other
1616
libloading = { version = "0.8" }

crates/bevy_ecs/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ecs"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
description = "Bevy Engine's entity component system"
66
homepage = "https://bevyengine.org"
@@ -16,11 +16,11 @@ bevy_debug_stepping = []
1616
default = ["bevy_reflect", "bevy_debug_stepping"]
1717

1818
[dependencies]
19-
bevy_ptr = { path = "../bevy_ptr", version = "0.13.1" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.13.1", optional = true }
21-
bevy_tasks = { path = "../bevy_tasks", version = "0.13.1" }
22-
bevy_utils = { path = "../bevy_utils", version = "0.13.1" }
23-
bevy_ecs_macros = { path = "macros", version = "0.13.1" }
19+
bevy_ptr = { path = "../bevy_ptr", version = "0.13.2" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.13.2", optional = true }
21+
bevy_tasks = { path = "../bevy_tasks", version = "0.13.2" }
22+
bevy_utils = { path = "../bevy_utils", version = "0.13.2" }
23+
bevy_ecs_macros = { path = "macros", version = "0.13.2" }
2424

2525
async-channel = "2.1.0"
2626
thread_local = "1.1.4"

crates/bevy_ecs/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ecs_macros"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
description = "Bevy ECS Macros"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
proc-macro = true
1010

1111
[dependencies]
12-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.1" }
12+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.2" }
1313

1414
syn = "2.0"
1515
quote = "1.0"

0 commit comments

Comments
 (0)