Skip to content

Commit 18d3635

Browse files
committed
Change bevy dep and add changelog message
1 parent fca5848 commit 18d3635

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# bevy_mod_scripting Changelog
2-
## Unreleased
2+
## v0.2.2
33
- Bump `tealr_doc_gen` and `tealr` versions
4-
4+
- Change bevy dependency semver to "0.9"
55
## v0.2.1
66
### Added
77
- Automatic documentation publishing for lua Bevy api

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ rhai = ["bevy_mod_scripting_rhai"]
5959
rhai_script_api=["bevy_script_api/rhai"]
6060

6161
[dependencies]
62-
bevy = { version = "0.9.1", default-features = false}
62+
bevy = { version = "0.9", default-features = false}
6363
bevy_mod_scripting_core = { path = "bevy_mod_scripting_core", version = "0.2.1" }
6464
bevy_mod_scripting_lua = { path = "languages/bevy_mod_scripting_lua", version = "0.2.1", optional = true }
6565
bevy_mod_scripting_rhai = { path = "languages/bevy_mod_scripting_rhai", version = "0.2.1", optional = true}
6666
bevy_script_api = { path = "bevy_script_api", version = "0.2.1", optional = true }
6767

6868
[dev-dependencies]
69-
bevy = { version = "0.9.1"}
69+
bevy = { version = "0.9"}
7070
rand = "0.8.5"
7171
bevy_console = "0.5.0"
7272
rhai-rand = "0.1"

bevy_event_priority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ name = "bevy_event_priority"
2121
path = "src/lib.rs"
2222

2323
[dependencies]
24-
bevy = { version = "0.9.1", default-features = false}
24+
bevy = { version = "0.9", default-features = false}
2525

bevy_mod_scripting_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ doc_always = []
2929

3030

3131
[dependencies]
32-
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"]}
32+
bevy = { version = "0.9", 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"]}
3333
bevy_event_priority = {path = "../bevy_event_priority", version = "0.2.1" }
3434
thiserror = "1.0.31"
3535
paste = "1.0.7"

bevy_script_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lua = ["bevy_mod_scripting_lua","bevy_mod_scripting_lua_derive"]
2626
rhai = ["bevy_mod_scripting_rhai"]
2727

2828
[dependencies]
29-
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"]}
29+
bevy = { version = "0.9", 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.2.1" }
3131
bevy_mod_scripting_core = { path="../bevy_mod_scripting_core", version = "0.2.1" }
3232
parking_lot="0.12.1"

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 @@ name="bevy_mod_scripting_lua"
4040
path="src/lib.rs"
4141

4242
[dependencies]
43-
bevy= { version = "0.9.1", default-features = false}
43+
bevy= { version = "0.9", default-features = false}
4444
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version = "0.2.1" }
4545
tealr = { version = "=0.9.0-alpha4", features=["mlua_vendored","mlua_send"]}
4646
parking_lot = "0.12.1"

languages/bevy_mod_scripting_rhai/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ name="bevy_mod_scripting_rhai"
2222
path="src/lib.rs"
2323

2424
[dependencies]
25-
bevy= { version = "0.9.1", default-features = false}
25+
bevy= { version = "0.9", default-features = false}
2626
rhai = { version = "1.8.0", features = ["sync"] }
2727
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version = "0.2.1" }

0 commit comments

Comments
 (0)