Skip to content

Commit fb89543

Browse files
committed
chore: Release
1 parent e7399c6 commit fb89543

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ rhai_script_api=["bevy_script_api/rhai"]
6060

6161
[dependencies]
6262
bevy = { version = "0.9.1", default-features = false}
63-
bevy_mod_scripting_core = { path = "bevy_mod_scripting_core", version = "0.1.1" }
63+
bevy_mod_scripting_core = { path = "bevy_mod_scripting_core", version = "0.2.0" }
6464
bevy_mod_scripting_lua = { path = "languages/bevy_mod_scripting_lua", version = "0.1.1", optional = true }
6565
bevy_mod_scripting_rhai = { path = "languages/bevy_mod_scripting_rhai", version = "0.1.1", optional = true}
6666
bevy_script_api = { path = "bevy_script_api", version = "0.1.1", optional = true }

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.1.1"
3+
version = "0.2.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT"

bevy_script_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rhai = ["bevy_mod_scripting_rhai"]
2828
[dependencies]
2929
bevy = { version = "0.9.1", default-features = false, features=["bevy_asset","bevy_gltf","bevy_animation","bevy_core_pipeline","bevy_ui","bevy_pbr","bevy_render","bevy_text","bevy_sprite","filesystem_watcher"]}
3030
bevy_mod_scripting_derive = { path="../bevy_mod_scripting_derive", version = "0.1.1"}
31-
bevy_mod_scripting_core = { path="../bevy_mod_scripting_core", version = "0.1.1"}
31+
bevy_mod_scripting_core = { path="../bevy_mod_scripting_core", version = "0.2.0" }
3232
parking_lot="0.12.1"
3333
paste="1.0.7"
3434
thiserror="1.0.32"

languages/bevy_mod_scripting_lua/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ path="src/lib.rs"
4040

4141
[dependencies]
4242
bevy= { version = "0.9.1", default-features = false}
43-
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version="0.1.1"}
43+
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version= "0.2.0" }
4444
tealr = { version = "0.9.0-alpha", features=["mlua_vendored","mlua_send"]}
4545
parking_lot = "0.12.1"
4646
serde_json = "1.0.81"

languages/bevy_mod_scripting_rhai/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ path="src/lib.rs"
2424
[dependencies]
2525
bevy= { version = "0.9.1", default-features = false}
2626
rhai = { version = "1.8.0", features = ["sync"] }
27-
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version="0.1.1"}
27+
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version= "0.2.0" }

0 commit comments

Comments
 (0)