Skip to content

Commit c7ddfda

Browse files
authored
chore: Remove alpha postfix (#161)
ditch alpha postfix
1 parent efa4115 commit c7ddfda

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Cargo.toml

+7-7
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 <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -64,16 +64,16 @@ rune = ["bevy_mod_scripting_rune"]
6464
[dependencies]
6565
bevy = { workspace = true }
6666
bevy_mod_scripting_core = { workspace = true }
67-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.8.0-alpha.2", optional = true }
68-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.8.0-alpha.2", optional = true }
69-
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.8.0-alpha.2", optional = true }
70-
bevy_script_api = { path = "crates/bevy_script_api", version = "0.8.0-alpha.2", optional = true }
67+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.8.0", optional = true }
68+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.8.0", optional = true }
69+
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.8.0", optional = true }
70+
bevy_script_api = { path = "crates/bevy_script_api", version = "0.8.0", optional = true }
7171

7272

7373
[workspace.dependencies]
7474
bevy = { version = "0.15.0", default-features = false }
75-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.8.0-alpha.2" }
76-
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.8.0-alpha.2" }
75+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.8.0" }
76+
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.8.0" }
7777

7878
[dev-dependencies]
7979
bevy = { workspace = true, default-features = true }

crates/bevy_event_priority/Cargo.toml

+1-1
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 <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/languages/bevy_mod_scripting_rune/Cargo.toml

+1-1
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-alpha.1"
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)