Skip to content

Commit b231ebb

Browse files
authored
Release 0.14.0 version bump (#14126)
# Objective - Bump the version before the release - This should not be merged until ready for the release to have prettier git history and tags
1 parent 201dd62 commit b231ebb

File tree

48 files changed

+351
-353
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

+351
-353
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.4"
3+
version = "0.14.0"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -346,11 +346,11 @@ ios_simulator = ["bevy_internal/ios_simulator"]
346346
bevy_state = ["bevy_internal/bevy_state"]
347347

348348
[dependencies]
349-
bevy_internal = { path = "crates/bevy_internal", version = "0.14.0-rc.4", default-features = false }
349+
bevy_internal = { path = "crates/bevy_internal", version = "0.14.0", default-features = false }
350350

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

355355
[dev-dependencies]
356356
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.4"
3+
version = "0.14.0"
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.4" }
14-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.4" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4" }
13+
bevy_app = { path = "../bevy_app", version = "0.14.0" }
14+
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
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.4"
3+
version = "0.14.0"
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.4" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.4" }
15-
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.4" }
16-
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.4" }
17-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.4" }
18-
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.4" }
19-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.4" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
15+
bevy_color = { path = "../bevy_color", version = "0.14.1" }
16+
bevy_core = { path = "../bevy_core", version = "0.14.0" }
17+
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
18+
bevy_log = { path = "../bevy_log", version = "0.14.0" }
19+
bevy_math = { path = "../bevy_math", version = "0.14.0" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
2121
"bevy",
2222
"petgraph",
2323
] }
24-
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.4" }
25-
bevy_time = { path = "../bevy_time", version = "0.14.0-rc.4" }
26-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
27-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4" }
28-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.4" }
29-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.4" }
24+
bevy_render = { path = "../bevy_render", version = "0.14.0" }
25+
bevy_time = { path = "../bevy_time", version = "0.14.0" }
26+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
27+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
28+
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
29+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0" }
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.4"
3+
version = "0.14.0"
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.14.0-rc.4" }
20-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4", default-features = false }
21-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", optional = true }
22-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
23-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.4" }
19+
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
20+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0", default-features = false }
21+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", optional = true }
22+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
23+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
2424

2525
# other
2626
downcast-rs = "1.2.0"

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.4"
3+
version = "0.14.0"
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.4" }
23-
bevy_asset_macros = { path = "macros", version = "0.14.0-rc.4" }
24-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4" }
25-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", features = [
22+
bevy_app = { path = "../bevy_app", version = "0.14.0" }
23+
bevy_asset_macros = { path = "macros", version = "0.14.0" }
24+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
25+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
2626
"uuid",
2727
] }
28-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.4" }
29-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
28+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
29+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
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.4" }
46+
bevy_winit = { path = "../bevy_winit", version = "0.14.0" }
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.4" }
63-
bevy_log = { path = "../bevy_log", version = "0.14.0-rc.4" }
62+
bevy_core = { path = "../bevy_core", version = "0.14.0" }
63+
bevy_log = { path = "../bevy_log", version = "0.14.0" }
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.4"
3+
version = "0.14.0"
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.4" }
15+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.14.0" }
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.4"
3+
version = "0.14.0"
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.4" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.4" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4" }
16-
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-rc.4" }
17-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.4" }
18-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
16+
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0" }
17+
bevy_math = { path = "../bevy_math", version = "0.14.0" }
18+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
1919
"bevy",
2020
] }
21-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.4" }
22-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.4" }
23-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
21+
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
22+
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
23+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
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.4"
3+
version = "0.14.1"
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.4" }
14-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", features = [
13+
bevy_math = { path = "../bevy_math", version = "0.14.0" }
14+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", 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.4"
3+
version = "0.14.0"
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.4", features = [
13+
bevy_app = { path = "../bevy_app", version = "0.14.0", features = [
1414
"bevy_reflect",
1515
] }
16-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4", features = [
16+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0", features = [
1717
"bevy_reflect",
1818
] }
19-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4", features = [
19+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0", features = [
2020
"bevy",
2121
] }
22-
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-rc.4" }
23-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
22+
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
23+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
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.4"
3+
version = "0.14.0"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <[email protected]>",
@@ -22,17 +22,17 @@ smaa_luts = ["bevy_render/ktx2", "bevy_render/zstd"]
2222

2323
[dependencies]
2424
# bevy
25-
bevy_app = { path = "../bevy_app", version = "0.14.0-rc.4" }
26-
bevy_asset = { path = "../bevy_asset", version = "0.14.0-rc.4" }
27-
bevy_core = { path = "../bevy_core", version = "0.14.0-rc.4" }
28-
bevy_color = { path = "../bevy_color", version = "0.14.0-rc.4" }
29-
bevy_derive = { path = "../bevy_derive", version = "0.14.0-rc.4" }
30-
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-rc.4" }
31-
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-rc.4" }
32-
bevy_render = { path = "../bevy_render", version = "0.14.0-rc.4" }
33-
bevy_transform = { path = "../bevy_transform", version = "0.14.0-rc.4" }
34-
bevy_math = { path = "../bevy_math", version = "0.14.0-rc.4" }
35-
bevy_utils = { path = "../bevy_utils", version = "0.14.0-rc.4" }
25+
bevy_app = { path = "../bevy_app", version = "0.14.0" }
26+
bevy_asset = { path = "../bevy_asset", version = "0.14.0" }
27+
bevy_core = { path = "../bevy_core", version = "0.14.0" }
28+
bevy_color = { path = "../bevy_color", version = "0.14.1" }
29+
bevy_derive = { path = "../bevy_derive", version = "0.14.0" }
30+
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0" }
31+
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0" }
32+
bevy_render = { path = "../bevy_render", version = "0.14.0" }
33+
bevy_transform = { path = "../bevy_transform", version = "0.14.0" }
34+
bevy_math = { path = "../bevy_math", version = "0.14.0" }
35+
bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
3636

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

0 commit comments

Comments
 (0)