Skip to content

Commit 972ee1f

Browse files
committed
clean up versions from last pre-release
1 parent 3a3a8c1 commit 972ee1f

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

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_mod_scripting"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -54,16 +54,16 @@ rune = ["bevy_mod_scripting_rune"]
5454
[dependencies]
5555
bevy = { workspace = true }
5656
bevy_mod_scripting_core = { workspace = true }
57-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.8.0-alpha.2", optional = true }
58-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.8.0-alpha.2", optional = true }
59-
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.8.0-alpha.2", optional = true }
57+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.8.0", optional = true }
58+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.8.0", optional = true }
59+
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.8.0", optional = true }
6060
bevy_mod_scripting_functions = { workspace = true }
6161

6262
[workspace.dependencies]
6363
bevy = { version = "0.15.0", default-features = false }
64-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.8.0-alpha.2" }
65-
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.8.0-alpha.2" }
66-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.8.0-alpha.2" }
64+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.8.0" }
65+
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.8.0" }
66+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.8.0" }
6767
test_utils = { path = "crates/test_utils" }
6868
mlua = { version = "0.10" }
6969

crates/bevy_event_priority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_event_priority"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_common"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_core"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_functions"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
66
license = "MIT OR Apache-2.0"

crates/bevy_script_api/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_script_api"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -34,8 +34,8 @@ parking_lot = "0.12.1"
3434
paste = "1.0.7"
3535
thiserror = "1.0.32"
3636
# lua
37-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.8.0-alpha.2", optional = true }
38-
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.8.0-alpha.2", optional = true }
39-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.8.0-alpha.2", optional = true }
37+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.8.0", optional = true }
38+
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.8.0", optional = true }
39+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.8.0", optional = true }
4040
smol_str = "0.2"
4141
allocator-api2 = "0.2"

crates/languages/bevy_mod_scripting_lua/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_lua"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/languages/bevy_mod_scripting_lua_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_mod_scripting_lua_derive"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -23,7 +23,7 @@ path = "src/lib.rs"
2323
proc-macro = true
2424

2525
[dependencies]
26-
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.8.0-alpha.2" }
26+
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.8.0" }
2727
paste = "1.0.7"
2828
darling = "0.20"
2929
syn = { version = "2.0.38", features = ["full", "fold", "extra-traits"] }

crates/languages/bevy_mod_scripting_rhai/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_rhai"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/languages/bevy_mod_scripting_rhai_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_mod_scripting_rhai_derive"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717
proc-macro = true
1818

1919
[dependencies]
20-
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.8.0-alpha.2" }
20+
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.8.0" }
2121
paste = "1.0.7"
2222
syn = { version = "1.0.57", features = ["full", "fold", "extra-traits"] }
2323
quote = "1.0.8"

crates/languages/bevy_mod_scripting_rune/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_rune"
3-
version = "0.8.0-alpha.2"
3+
version = "0.8.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Necessary functionality for Rune support with bevy_mod_scripting"

0 commit comments

Comments
 (0)