Skip to content

Commit a4476e6

Browse files
infmagic2047ItsDoot
authored andcommitted
Bump Bevy to 0.8.0-dev (bevyengine#4505)
# Objective We should bump our version to 0.8.0-dev after releasing 0.7.0, according to our release checklist. ## Solution Do it.
1 parent 95b34f1 commit a4476e6

File tree

37 files changed

+241
-241
lines changed

37 files changed

+241
-241
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
categories = ["game-engines", "graphics", "gui", "rendering"]
66
description = "A refreshingly simple data-driven game engine and app framework"
@@ -104,11 +104,11 @@ debug_asset_server = ["bevy_internal/debug_asset_server"]
104104
animation = ["bevy_internal/animation"]
105105

106106
[dependencies]
107-
bevy_dylib = { path = "crates/bevy_dylib", version = "0.7.0", default-features = false, optional = true }
108-
bevy_internal = { path = "crates/bevy_internal", version = "0.7.0", default-features = false }
107+
bevy_dylib = { path = "crates/bevy_dylib", version = "0.8.0-dev", default-features = false, optional = true }
108+
bevy_internal = { path = "crates/bevy_internal", version = "0.8.0-dev", default-features = false }
109109

110110
[target.'cfg(target_arch = "wasm32")'.dependencies]
111-
bevy_internal = { path = "crates/bevy_internal", version = "0.7.0", default-features = false, features = [
111+
bevy_internal = { path = "crates/bevy_internal", version = "0.8.0-dev", default-features = false, features = [
112112
"webgl",
113113
] }
114114

crates/bevy_animation/Cargo.toml

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

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

crates/bevy_app/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_app"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides core App functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -15,10 +15,10 @@ default = ["bevy_reflect"]
1515

1616
[dependencies]
1717
# bevy
18-
bevy_derive = { path = "../bevy_derive", version = "0.7.0" }
19-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
20-
bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", optional = true }
21-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
18+
bevy_derive = { path = "../bevy_derive", version = "0.8.0-dev" }
19+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
20+
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", optional = true }
21+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
2222

2323
# other
2424
serde = { version = "1.0", features = ["derive"], optional = true }
@@ -31,4 +31,4 @@ web-sys = { version = "0.3", features = [ "Window" ] }
3131

3232
[dev-dependencies]
3333
# bevy
34-
bevy_log = { path = "../bevy_log", version = "0.7.0" }
34+
bevy_log = { path = "../bevy_log", version = "0.8.0-dev" }

crates/bevy_asset/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_asset"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides asset functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -15,13 +15,13 @@ debug_asset_server = ["filesystem_watcher"]
1515

1616
[dependencies]
1717
# bevy
18-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
19-
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.7.0" }
20-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
21-
bevy_log = { path = "../bevy_log", version = "0.7.0" }
22-
bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] }
23-
bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" }
24-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
18+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
19+
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.8.0-dev" }
20+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
21+
bevy_log = { path = "../bevy_log", version = "0.8.0-dev" }
22+
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", features = ["bevy"] }
23+
bevy_tasks = { path = "../bevy_tasks", version = "0.8.0-dev" }
24+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
2525

2626
# other
2727
serde = { version = "1", features = ["derive"] }
@@ -45,4 +45,4 @@ ndk-glue = { version = "0.5" }
4545
[dev-dependencies]
4646
futures-lite = "1.4.0"
4747
tempfile = "3.2.0"
48-
bevy_core = { path = "../bevy_core", version = "0.7.0" }
48+
bevy_core = { path = "../bevy_core", version = "0.8.0-dev" }

crates/bevy_audio/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_audio"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides audio functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,11 +10,11 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
14-
bevy_asset = { path = "../bevy_asset", version = "0.7.0" }
15-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
16-
bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] }
17-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
13+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
14+
bevy_asset = { path = "../bevy_asset", version = "0.8.0-dev" }
15+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
16+
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", features = ["bevy"] }
17+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
1818

1919
# other
2020
anyhow = "1.0.4"
@@ -26,7 +26,7 @@ rodio = { version = "0.15", default-features = false, features = ["wasm-bindgen"
2626

2727
[dev-dependencies]
2828
# bevy
29-
bevy_internal = { path = "../bevy_internal", version = "0.7.0" }
29+
bevy_internal = { path = "../bevy_internal", version = "0.8.0-dev" }
3030

3131
[features]
3232
mp3 = ["rodio/mp3"]

crates/bevy_core/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides core functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -11,13 +11,13 @@ keywords = ["bevy"]
1111

1212
[dependencies]
1313
# bevy
14-
bevy_app = { path = "../bevy_app", version = "0.7.0", features = ["bevy_reflect"] }
15-
bevy_derive = { path = "../bevy_derive", version = "0.7.0" }
16-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0", features = ["bevy_reflect"] }
17-
bevy_math = { path = "../bevy_math", version = "0.7.0" }
18-
bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", features = ["bevy"] }
19-
bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" }
20-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
14+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev", features = ["bevy_reflect"] }
15+
bevy_derive = { path = "../bevy_derive", version = "0.8.0-dev" }
16+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev", features = ["bevy_reflect"] }
17+
bevy_math = { path = "../bevy_math", version = "0.8.0-dev" }
18+
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", features = ["bevy"] }
19+
bevy_tasks = { path = "../bevy_tasks", version = "0.8.0-dev" }
20+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
2121

2222
# other
2323
bytemuck = "1.5"

crates/bevy_core_pipeline/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_core_pipeline"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
authors = [
66
"Bevy Contributors <[email protected]>",
@@ -17,10 +17,10 @@ trace = []
1717

1818
[dependencies]
1919
# bevy
20-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
21-
bevy_asset = { path = "../bevy_asset", version = "0.7.0" }
22-
bevy_core = { path = "../bevy_core", version = "0.7.0" }
23-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
24-
bevy_render = { path = "../bevy_render", version = "0.7.0" }
25-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
20+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
21+
bevy_asset = { path = "../bevy_asset", version = "0.8.0-dev" }
22+
bevy_core = { path = "../bevy_core", version = "0.8.0-dev" }
23+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
24+
bevy_render = { path = "../bevy_render", version = "0.8.0-dev" }
25+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
2626

crates/bevy_crevice/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bevy_crevice"
33
description = "Create GLSL-compatible versions of structs with explicitly-initialized padding (Bevy version)"
4-
version = "0.7.0"
4+
version = "0.8.0-dev"
55
edition = "2021"
66
authors = ["Lucien Greathouse <[email protected]>"]
77
documentation = "https://docs.rs/crevice"
@@ -23,7 +23,7 @@ std = []
2323
# default-members = ["crevice-derive", "crevice-tests"]
2424

2525
[dependencies]
26-
bevy-crevice-derive = { version = "0.7.0", path = "bevy-crevice-derive" }
26+
bevy-crevice-derive = { version = "0.8.0-dev", path = "bevy-crevice-derive" }
2727

2828
bytemuck = "1.4.1"
2929
mint = "0.5.8"

crates/bevy_crevice/bevy-crevice-derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bevy-crevice-derive"
33
description = "Derive crate for the 'crevice' crate (Bevy version)"
4-
version = "0.7.0"
4+
version = "0.8.0-dev"
55
edition = "2018"
66
authors = ["Lucien Greathouse <[email protected]>"]
77
documentation = "https://docs.rs/crevice-derive"
@@ -24,4 +24,4 @@ proc-macro = true
2424
syn = "1.0.40"
2525
quote = "1.0.7"
2626
proc-macro2 = "1.0.21"
27-
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.7.0" }
27+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.8.0-dev" }

crates/bevy_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_derive"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
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.7.0" }
15+
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.8.0-dev" }
1616

1717
quote = "1.0"
1818
syn = "1.0"

crates/bevy_diagnostic/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_diagnostic"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides diagnostic functionality for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -11,8 +11,8 @@ keywords = ["bevy"]
1111

1212
[dependencies]
1313
# bevy
14-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
15-
bevy_core = { path = "../bevy_core", version = "0.7.0" }
16-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
17-
bevy_log = { path = "../bevy_log", version = "0.7.0" }
18-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
14+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
15+
bevy_core = { path = "../bevy_core", version = "0.8.0-dev" }
16+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
17+
bevy_log = { path = "../bevy_log", version = "0.8.0-dev" }
18+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }

crates/bevy_dylib/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dylib"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
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.7.0", default-features = false }
15+
bevy_internal = { path = "../bevy_internal", version = "0.8.0-dev", default-features = false }

crates/bevy_dynamic_plugin/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_dynamic_plugin"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
66
homepage = "https://bevyengine.org"
@@ -12,7 +12,7 @@ keywords = ["bevy"]
1212

1313
[dependencies]
1414
# bevy
15-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
15+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
1616

1717
# other
1818
libloading = { version = "0.7" }

crates/bevy_ecs/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ecs"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Bevy Engine's entity component system"
66
homepage = "https://bevyengine.org"
@@ -14,10 +14,10 @@ trace = []
1414
default = ["bevy_reflect"]
1515

1616
[dependencies]
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.7.0", optional = true }
18-
bevy_tasks = { path = "../bevy_tasks", version = "0.7.0" }
19-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
20-
bevy_ecs_macros = { path = "macros", version = "0.7.0" }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", optional = true }
18+
bevy_tasks = { path = "../bevy_tasks", version = "0.8.0-dev" }
19+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
20+
bevy_ecs_macros = { path = "macros", version = "0.8.0-dev" }
2121

2222
async-channel = "1.4"
2323
fixedbitset = "0.4"

crates/bevy_ecs/macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ecs_macros"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
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.7.0" }
12+
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.8.0-dev" }
1313

1414
syn = "1.0"
1515
quote = "1.0"
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_ecs_compile_fail_tests"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Compile fail tests for Bevy Engine's entity component system"
66
homepage = "https://bevyengine.org"
@@ -9,5 +9,5 @@ license = "MIT OR Apache-2.0"
99
publish = false
1010

1111
[dev-dependencies]
12-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
12+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
1313
trybuild = "1.0"

crates/bevy_gilrs/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_gilrs"
3-
version = "0.7.0"
3+
version = "0.8.0-dev"
44
edition = "2021"
55
description = "Gamepad system made using Gilrs for Bevy Engine"
66
homepage = "https://bevyengine.org"
@@ -10,10 +10,10 @@ keywords = ["bevy"]
1010

1111
[dependencies]
1212
# bevy
13-
bevy_app = { path = "../bevy_app", version = "0.7.0" }
14-
bevy_ecs = { path = "../bevy_ecs", version = "0.7.0" }
15-
bevy_input = { path = "../bevy_input", version = "0.7.0" }
16-
bevy_utils = { path = "../bevy_utils", version = "0.7.0" }
13+
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
14+
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
15+
bevy_input = { path = "../bevy_input", version = "0.8.0-dev" }
16+
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
1717

1818
# other
1919
gilrs = { version = "0.8.0", features = ["wasm-bindgen"] }

0 commit comments

Comments
 (0)