Skip to content

Commit 22e39c4

Browse files
committed
Release 0.12.1
1 parent 9ac0d9b commit 22e39c4

File tree

45 files changed

+307
-307
lines changed

Some content is hidden

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

45 files changed

+307
-307
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -276,8 +276,8 @@ file_watcher = ["bevy_internal/file_watcher"]
276276
embedded_watcher = ["bevy_internal/embedded_watcher"]
277277

278278
[dependencies]
279-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.12.0", default-features = false, optional = true }
280-
bevy_internal = { path = "crates/bevy_internal", version = "0.12.0", default-features = false }
279+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.12.1", default-features = false, optional = true }
280+
bevy_internal = { path = "crates/bevy_internal", version = "0.12.1", default-features = false }
281281

282282
[dev-dependencies]
283283
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Provides accessibility support for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,8 +10,8 @@ keywords = ["bevy", "accessibility", "a11y"]
1010

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

1717
accesskit = "0.12"

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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Provides animation functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,14 +10,14 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.12.0" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.12.0" }
15-
bevy_core = { path = "../bevy_core", version = "0.12.0" }
16-
bevy_math = { path = "../bevy_math", version = "0.12.0" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", features = ["bevy"] }
18-
bevy_render = { path = "../bevy_render", version = "0.12.0" }
19-
bevy_time = { path = "../bevy_time", version = "0.12.0" }
20-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
21-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
22-
bevy_transform = { path = "../bevy_transform", version = "0.12.0" }
23-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.12.0" }
13+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.12.1" }
15+
bevy_core = { path = "../bevy_core", version = "0.12.1" }
16+
bevy_math = { path = "../bevy_math", version = "0.12.1" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1", features = ["bevy"] }
18+
bevy_render = { path = "../bevy_render", version = "0.12.1" }
19+
bevy_time = { path = "../bevy_time", version = "0.12.1" }
20+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
21+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1" }
22+
bevy_transform = { path = "../bevy_transform", version = "0.12.1" }
23+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.12.1" }

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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -16,11 +16,11 @@ bevy_reflect = ["dep:bevy_reflect", "bevy_ecs/bevy_reflect"]
1616

1717
[dependencies]
1818
# bevy
19-
bevy_derive = { path = "../bevy_derive", version = "0.12.0" }
20-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0", default-features = false }
21-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", optional = true }
22-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
23-
bevy_tasks = { path = "../bevy_tasks", version = "0.12.0" }
19+
bevy_derive = { path = "../bevy_derive", version = "0.12.1" }
20+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1", default-features = false }
21+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1", optional = true }
22+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
23+
bevy_tasks = { path = "../bevy_tasks", version = "0.12.1" }
2424

2525
# other
2626
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.12.0"
3+
version = "0.12.1"
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.12.0" }
22-
bevy_asset_macros = { path = "macros", version = "0.12.0" }
23-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
24-
bevy_log = { path = "../bevy_log", version = "0.12.0" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0" }
26-
bevy_tasks = { path = "../bevy_tasks", version = "0.12.0" }
27-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
21+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
22+
bevy_asset_macros = { path = "macros", version = "0.12.1" }
23+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1" }
24+
bevy_log = { path = "../bevy_log", version = "0.12.1" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1" }
26+
bevy_tasks = { path = "../bevy_tasks", version = "0.12.1" }
27+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
2828

2929
async-broadcast = "0.5"
3030
async-fs = "1.5"
@@ -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.12.0" }
43+
bevy_winit = { path = "../bevy_winit", version = "0.12.1" }
4444

4545
[target.'cfg(target_arch = "wasm32")'.dependencies]
4646
wasm-bindgen = { version = "0.2" }
@@ -52,4 +52,4 @@ 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.12.0" }
55+
bevy_core = { path = "../bevy_core", version = "0.12.1" }

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.12.0"
3+
version = "0.12.1"
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.12.0" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.12.1" }
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,14 +10,14 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.12.0" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.12.0" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
16-
bevy_math = { path = "../bevy_math", version = "0.12.0" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", features = ["bevy"] }
18-
bevy_transform = { path = "../bevy_transform", version = "0.12.0" }
19-
bevy_derive = { path = "../bevy_derive", version = "0.12.0" }
20-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
13+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.12.1" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1" }
16+
bevy_math = { path = "../bevy_math", version = "0.12.1" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1", features = ["bevy"] }
18+
bevy_transform = { path = "../bevy_transform", version = "0.12.1" }
19+
bevy_derive = { path = "../bevy_derive", version = "0.12.1" }
20+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
2121

2222
# other
2323
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Provides core functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -11,12 +11,12 @@ keywords = ["bevy"]
1111

1212
[dependencies]
1313
# bevy
14-
bevy_app = { path = "../bevy_app", version = "0.12.0", features = ["bevy_reflect"] }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0", features = ["bevy_reflect"] }
16-
bevy_math = { path = "../bevy_math", version = "0.12.0" }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", features = ["bevy"] }
18-
bevy_tasks = { path = "../bevy_tasks", version = "0.12.0" }
19-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
14+
bevy_app = { path = "../bevy_app", version = "0.12.1", features = ["bevy_reflect"] }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1", features = ["bevy_reflect"] }
16+
bevy_math = { path = "../bevy_math", version = "0.12.1" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1", features = ["bevy"] }
18+
bevy_tasks = { path = "../bevy_tasks", version = "0.12.1" }
19+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
2020

2121
# other
2222
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <[email protected]>",
@@ -19,17 +19,17 @@ tonemapping_luts = ["bevy_render/ktx2", "bevy_render/zstd"]
1919

2020
[dependencies]
2121
# bevy
22-
bevy_app = { path = "../bevy_app", version = "0.12.0" }
23-
bevy_asset = { path = "../bevy_asset", version = "0.12.0" }
24-
bevy_core = { path = "../bevy_core", version = "0.12.0" }
25-
bevy_derive = { path = "../bevy_derive", version = "0.12.0" }
26-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
27-
bevy_log = { path = "../bevy_log", version = "0.12.0" }
28-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0" }
29-
bevy_render = { path = "../bevy_render", version = "0.12.0" }
30-
bevy_transform = { path = "../bevy_transform", version = "0.12.0" }
31-
bevy_math = { path = "../bevy_math", version = "0.12.0" }
32-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
22+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
23+
bevy_asset = { path = "../bevy_asset", version = "0.12.1" }
24+
bevy_core = { path = "../bevy_core", version = "0.12.1" }
25+
bevy_derive = { path = "../bevy_derive", version = "0.12.1" }
26+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1" }
27+
bevy_log = { path = "../bevy_log", version = "0.12.1" }
28+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1" }
29+
bevy_render = { path = "../bevy_render", version = "0.12.1" }
30+
bevy_transform = { path = "../bevy_transform", version = "0.12.1" }
31+
bevy_math = { path = "../bevy_math", version = "0.12.1" }
32+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
3333

3434
serde = { version = "1", features = ["derive"] }
3535
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.12.0"
3+
version = "0.12.1"
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.12.0" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.12.1" }
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.12.0"
3+
version = "0.12.1"
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.12.0" }
18-
bevy_core = { path = "../bevy_core", version = "0.12.0" }
19-
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
20-
bevy_log = { path = "../bevy_log", version = "0.12.0" }
21-
bevy_time = { path = "../bevy_time", version = "0.12.0" }
22-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
17+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
18+
bevy_core = { path = "../bevy_core", version = "0.12.1" }
19+
bevy_ecs = { path = "../bevy_ecs", version = "0.12.1" }
20+
bevy_log = { path = "../bevy_log", version = "0.12.1" }
21+
bevy_time = { path = "../bevy_time", version = "0.12.1" }
22+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
2323

2424
# MacOS
2525
[target.'cfg(all(target_os="macos"))'.dependencies]

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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Force the Bevy Engine to be dynamically linked for faster linking"
66
homepage = "https://bevyengine.org"
@@ -12,4 +12,4 @@ keywords = ["bevy"]
1212
crate-type = ["dylib"]
1313

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

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.12.0"
3+
version = "0.12.1"
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.12.0" }
13+
bevy_app = { path = "../bevy_app", version = "0.12.1" }
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.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Bevy Engine's entity component system"
66
homepage = "https://bevyengine.org"
@@ -15,11 +15,11 @@ multi-threaded = ["bevy_tasks/multi-threaded"]
1515
default = ["bevy_reflect"]
1616

1717
[dependencies]
18-
bevy_ptr = { path = "../bevy_ptr", version = "0.12.0" }
19-
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", optional = true }
20-
bevy_tasks = { path = "../bevy_tasks", version = "0.12.0" }
21-
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
22-
bevy_ecs_macros = { path = "macros", version = "0.12.0" }
18+
bevy_ptr = { path = "../bevy_ptr", version = "0.12.1" }
19+
bevy_reflect = { path = "../bevy_reflect", version = "0.12.1", optional = true }
20+
bevy_tasks = { path = "../bevy_tasks", version = "0.12.1" }
21+
bevy_utils = { path = "../bevy_utils", version = "0.12.1" }
22+
bevy_ecs_macros = { path = "macros", version = "0.12.1" }
2323

2424
async-channel = "1.4"
2525
event-listener = "2.5"

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.12.0"
3+
version = "0.12.1"
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.12.0" }
12+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.12.1" }
1313

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

crates/bevy_encase_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_encase_derive"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Bevy derive macro for encase"
66
homepage = "https://bevyengine.org"
@@ -12,5 +12,5 @@ keywords = ["bevy"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.12.0" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.12.1" }
1616
encase_derive_impl = "0.6.1"

0 commit comments

Comments
 (0)