Skip to content

Commit 79a93de

Browse files
committed
Release Candidate 0.14.0-rc.2
1 parent 5f2e927 commit 79a93de

File tree

48 files changed

+350
-350
lines changed

Some content is hidden

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

48 files changed

+350
-350
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.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -339,11 +339,11 @@ ios_simulator = ["bevy_internal/ios_simulator"]
339339
bevy_state = ["bevy_internal/bevy_state"]
340340

341341
[dependencies]
342-
bevy_internal = { path = "crates/bevy_internal", version = "0.14.0-rc.1", default-features = false }
342+
bevy_internal = { path = "crates/bevy_internal", version = "0.14.0-rc.2", default-features = false }
343343

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

348348
[dev-dependencies]
349349
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.14.0-rc.1"
3+
version = "0.14.0-rc.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.14.0-rc.1" }
14-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.1" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1" }
13+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" }
14+
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" }
1616

1717
accesskit = "0.14"
1818

crates/bevy_animation/Cargo.toml

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

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.1" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.1" }
15-
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.1" }
16-
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.1" }
17-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.1" }
18-
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.1" }
19-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.1" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" }
15+
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" }
16+
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" }
17+
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" }
18+
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" }
19+
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [
2121
"bevy",
2222
"petgraph",
2323
] }
24-
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.1" }
25-
bevy_time = { path = "../bevy_time", version = "0.14.0-rc.1" }
26-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
27-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1" }
28-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.1" }
29-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.1" }
24+
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" }
25+
bevy_time = { path = "../bevy_time", version = "0.14.0-rc.2" }
26+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
27+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" }
28+
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" }
29+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" }
3030

3131
# other
3232
fixedbitset = "0.5"

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.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -17,11 +17,11 @@ serialize = ["bevy_ecs/serde"]
1717

1818
[dependencies]
1919
# bevy
20-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.1" }
21-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1", default-features = false }
22-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", optional = true }
23-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
24-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.1" }
20+
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" }
21+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", default-features = false }
22+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", optional = true }
23+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
24+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.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.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -19,14 +19,14 @@ watch = []
1919
trace = []
2020

2121
[dependencies]
22-
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.1" }
23-
bevy_asset_macros = { path = "macros", version = "0.14.0-rc.1" }
24-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", features = [
22+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" }
23+
bevy_asset_macros = { path = "macros", version = "0.14.0-rc.2" }
24+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [
2626
"uuid",
2727
] }
28-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.1" }
29-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
28+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" }
29+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
3030

3131
async-broadcast = "0.5"
3232
async-fs = "2.0"
@@ -43,7 +43,7 @@ thiserror = "1.0"
4343
uuid = { version = "1.0", features = ["v4"] }
4444

4545
[target.'cfg(target_os = "android")'.dependencies]
46-
bevy_winit = { path = "../bevy_winit", version = "0.14.0-rc.1" }
46+
bevy_winit = { path = "../bevy_winit", version = "0.14.0-rc.2" }
4747

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

6161
[dev-dependencies]
62-
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.1" }
63-
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.1" }
62+
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" }
63+
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.2" }
6464

6565
[lints]
6666
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.14.0-rc.1"
3+
version = "0.14.0-rc.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.14.0-rc.1" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0-rc.2" }
1616

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

crates/bevy_audio/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_audio"
3-
version = "0.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,17 +10,17 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.1" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.1" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1" }
16-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.1" }
17-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.1" }
18-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" }
16+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.2" }
17+
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" }
18+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [
1919
"bevy",
2020
] }
21-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.1" }
22-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.1" }
23-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
21+
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" }
22+
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" }
23+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
2424

2525
# other
2626
rodio = { version = "0.18", default-features = false }

crates/bevy_color/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_color"
3-
version = "0.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
description = "Types for representing and manipulating color values"
66
homepage = "https://bevyengine.org"
@@ -10,8 +10,8 @@ keywords = ["bevy", "color"]
1010
rust-version = "1.76.0"
1111

1212
[dependencies]
13-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.1" }
14-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", features = [
13+
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" }
14+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [
1515
"bevy",
1616
] }
1717
bytemuck = { version = "1", features = ["derive"] }

crates/bevy_core/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_core"
3-
version = "0.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
description = "Provides core functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,17 +10,17 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.1", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2", features = [
1414
"bevy_reflect",
1515
] }
16-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1", features = [
16+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2", features = [
1717
"bevy_reflect",
1818
] }
19-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1", features = [
19+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2", features = [
2020
"bevy",
2121
] }
22-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.1" }
23-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
22+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.2" }
23+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
2424

2525
# other
2626
serde = { version = "1.0", optional = true }

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.14.0-rc.1"
3+
version = "0.14.0-rc.2"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <bevyengine@gmail.com>",
@@ -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.14.0-rc.1" }
25-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.1" }
26-
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.1" }
27-
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.1" }
28-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.1" }
29-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.1" }
30-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.1" }
31-
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.1" }
32-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.1" }
33-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.1" }
34-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.1" }
24+
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.2" }
25+
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.2" }
26+
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.2" }
27+
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.2" }
28+
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.2" }
29+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.2" }
30+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.2" }
31+
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.2" }
32+
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.2" }
33+
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.2" }
34+
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.2" }
3535

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

0 commit comments

Comments
 (0)