Skip to content

Commit

Permalink
Change bevy dep and add changelog message
Browse files Browse the repository at this point in the history
  • Loading branch information
makspll committed Jan 13, 2023
1 parent fca5848 commit 18d3635
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bevy_mod_scripting Changelog
## Unreleased
## v0.2.2
- Bump `tealr_doc_gen` and `tealr` versions

- Change bevy dependency semver to "0.9"
## v0.2.1
### Added
- Automatic documentation publishing for lua Bevy api
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ rhai = ["bevy_mod_scripting_rhai"]
rhai_script_api=["bevy_script_api/rhai"]

[dependencies]
bevy = { version = "0.9.1", default-features = false}
bevy = { version = "0.9", default-features = false}
bevy_mod_scripting_core = { path = "bevy_mod_scripting_core", version = "0.2.1" }
bevy_mod_scripting_lua = { path = "languages/bevy_mod_scripting_lua", version = "0.2.1", optional = true }
bevy_mod_scripting_rhai = { path = "languages/bevy_mod_scripting_rhai", version = "0.2.1", optional = true}
bevy_script_api = { path = "bevy_script_api", version = "0.2.1", optional = true }

[dev-dependencies]
bevy = { version = "0.9.1"}
bevy = { version = "0.9"}
rand = "0.8.5"
bevy_console = "0.5.0"
rhai-rand = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion bevy_event_priority/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ name = "bevy_event_priority"
path = "src/lib.rs"

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

2 changes: 1 addition & 1 deletion bevy_mod_scripting_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ doc_always = []


[dependencies]
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"]}
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"]}
bevy_event_priority = {path = "../bevy_event_priority", version = "0.2.1" }
thiserror = "1.0.31"
paste = "1.0.7"
Expand Down
2 changes: 1 addition & 1 deletion bevy_script_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lua = ["bevy_mod_scripting_lua","bevy_mod_scripting_lua_derive"]
rhai = ["bevy_mod_scripting_rhai"]

[dependencies]
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"]}
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"]}
bevy_mod_scripting_derive = { path="../bevy_mod_scripting_derive", version = "0.2.1" }
bevy_mod_scripting_core = { path="../bevy_mod_scripting_core", version = "0.2.1" }
parking_lot="0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion languages/bevy_mod_scripting_lua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ name="bevy_mod_scripting_lua"
path="src/lib.rs"

[dependencies]
bevy= { version = "0.9.1", default-features = false}
bevy= { version = "0.9", default-features = false}
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version = "0.2.1" }
tealr = { version = "=0.9.0-alpha4", features=["mlua_vendored","mlua_send"]}
parking_lot = "0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion languages/bevy_mod_scripting_rhai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ name="bevy_mod_scripting_rhai"
path="src/lib.rs"

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

0 comments on commit 18d3635

Please sign in to comment.