diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ad530e3..6f4f3a414 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,97 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.17.0...v0.17.1) - 2025-11-07 + +### Added + +- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497)) +- Don't panic! ([#216](https://github.com/makspll/bevy_mod_scripting/pull/216)) +- Improvements to BMS in multi-language context ([#194](https://github.com/makspll/bevy_mod_scripting/pull/194)) +- complete plugin re-write + +### Changed + +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md + +### Fixed + +- bump `bevy` to 0.15.1 ([#241](https://github.com/makspll/bevy_mod_scripting/pull/241)) +- Added new version to readme.md ([#164](https://github.com/makspll/bevy_mod_scripting/pull/164)) +- fix doctests +- fix link and add changelog entry +- fix tealr versions and add reccomended install command +- fixed doctests +- fixed examples +- fixed examples +- fix doctests +- fixed doctests + +### Other + +- Bevy 0.15 Support ([#141](https://github.com/makspll/bevy_mod_scripting/pull/141)) +- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) +- Fix Broken Example ([#123](https://github.com/makspll/bevy_mod_scripting/pull/123)) +- Proxy derive macros, rustc plugin codegen, safety improvements ([#67](https://github.com/makspll/bevy_mod_scripting/pull/67)) +- Add lua documentation link to readme.md ([#107](https://github.com/makspll/bevy_mod_scripting/pull/107)) +- Update readme.md ([#101](https://github.com/makspll/bevy_mod_scripting/pull/101)) +- Bump tealr & mlua versions ([#96](https://github.com/makspll/bevy_mod_scripting/pull/96)) +- Add Bevy 0.11 support ([#63](https://github.com/makspll/bevy_mod_scripting/pull/63)) +- Add fallback logo image pointing to github ([#58](https://github.com/makspll/bevy_mod_scripting/pull/58)) +- Bevy 0.10 support ([#47](https://github.com/makspll/bevy_mod_scripting/pull/47)) +- Fix typos in readme.md ([#44](https://github.com/makspll/bevy_mod_scripting/pull/44)) +- Update readme.md +- ignore test +- change test +- update readme and release files +- Add Rhai Bevy API ([#40](https://github.com/makspll/bevy_mod_scripting/pull/40)) +- Update to 0.9.1 ([#38](https://github.com/makspll/bevy_mod_scripting/pull/38)) +- change CI and doctests +- Fix broken example links +- change readme.md +- Change readme.md +- make build sync with hot reloading teal +- update link +- update game_of_life and add video to readme +- game of life example complete +- Add prelude and some more cleanup +- readme links fix +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into add_general_api +- change readme and remove old benches +- rename feature, small fixes, some env config +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into switch_to_mlua_tealr +- change readme.md +- Update readme.md +- Update readme.md +- Merge pull request #8 from makspll/add_event_recipients +- add event recipient functionality +- renamed crate to bevy_mod_scripting +- Update readme.md +- Update readme.md +- Update readme.md +- cleaned up readme.md +- added logo to readme +- typo +- cleaned up readme.md examples +- upgraded rlua callback arg type support +- formatting +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into main +- implemented builder trait for app and changed example +- remove bs in docs +- updated readme.md +- added initial functionality + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.16.1) - 2025-11-06 ### Added diff --git a/Cargo.toml b/Cargo.toml index 14c05b874..dc074165a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories.workspace = true readme.workspace = true [workspace.package] -version = "0.17.0" +version = "0.17.1" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -123,20 +123,20 @@ ladfile_builder = { workspace = true, optional = true } # local crates script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" } test_utils = { path = "crates/testing_crates/test_utils" } -bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.0", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.0" } -bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.0", default-features = false } -ladfile = { path = "crates/ladfile", version = "0.17.0" } -ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.0" } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.0", default-features = false } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.0", default-features = false } -bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.0", default-features = false } -bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.0", default-features = false } -bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.0", default-features = false } -bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.0", default-features = false } -bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.0", default-features = false } -lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.0", default-features = false } -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" } +bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.1", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.1" } +bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.1", default-features = false } +ladfile = { path = "crates/ladfile", version = "0.17.1" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.1" } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.1", default-features = false } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.1", default-features = false } +bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.1", default-features = false } +bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.1", default-features = false } +bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.1", default-features = false } +bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.1", default-features = false } +bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.1", default-features = false } +lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.1", default-features = false } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.1" } # bevy diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index ed662f7b6..6f3051646 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -48,9 +48,9 @@ bevy_mod_scripting_display = { workspace = true } bevy_mod_scripting_asset = { workspace = true } bevy_mod_scripting_script = { workspace = true } bevy_mod_scripting_derive = { workspace = true } -bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.0" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.0" } -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.0" } +bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.1" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.1" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.1" } bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] } bevy_app = { workspace = true } @@ -58,28 +58,28 @@ bevy_asset = { workspace = true } bevy_platform = { workspace = true, features = ["std"] } bevy_reflect = { workspace = true, features = [] } -bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.0", optional = true } -bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.0", optional = true } -bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.0", optional = true } -bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.0", optional = true } -bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.0", optional = true } -bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.0", optional = true } -bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.0", optional = true } -bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.0", optional = true } -bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.0", optional = true } -bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.0", optional = true } -bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.0", optional = true } -bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.0", optional = true } -bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.0", optional = true } -bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.0", optional = true } -bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.0", optional = true } -bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.0", optional = true } -bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.0", optional = true } -bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.0", optional = true } -bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.0", optional = true } -bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.0", optional = true } -bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.0", optional = true } -bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.0", optional = true } +bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.1", optional = true } +bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.1", optional = true } +bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.1", optional = true } +bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.1", optional = true } +bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.1", optional = true } +bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.1", optional = true } +bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.1", optional = true } +bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.1", optional = true } +bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.1", optional = true } +bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.1", optional = true } +bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.1", optional = true } +bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.1", optional = true } +bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.1", optional = true } +bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.1", optional = true } +bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.1", optional = true } +bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.1", optional = true } +bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.1", optional = true } +bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.1", optional = true } +bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.1", optional = true } +bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.1", optional = true } +bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.1", optional = true } +bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.1", optional = true } [lints] workspace = true diff --git a/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md b/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md index 92980036f..6753ad48c 100644 --- a/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md +++ b/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md @@ -7,6 +7,97 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.1](https://github.com/makspll/bevy_mod_scripting/compare/lua_language_server_lad_backend-v0.17.0...lua_language_server_lad_backend-v0.17.1) - 2025-11-07 + +### Added + +- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497)) +- Don't panic! ([#216](https://github.com/makspll/bevy_mod_scripting/pull/216)) +- Improvements to BMS in multi-language context ([#194](https://github.com/makspll/bevy_mod_scripting/pull/194)) +- complete plugin re-write + +### Changed + +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md +- changed readme.md + +### Fixed + +- bump `bevy` to 0.15.1 ([#241](https://github.com/makspll/bevy_mod_scripting/pull/241)) +- Added new version to readme.md ([#164](https://github.com/makspll/bevy_mod_scripting/pull/164)) +- fix doctests +- fix link and add changelog entry +- fix tealr versions and add reccomended install command +- fixed doctests +- fixed examples +- fixed examples +- fix doctests +- fixed doctests + +### Other + +- Bevy 0.15 Support ([#141](https://github.com/makspll/bevy_mod_scripting/pull/141)) +- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) +- Fix Broken Example ([#123](https://github.com/makspll/bevy_mod_scripting/pull/123)) +- Proxy derive macros, rustc plugin codegen, safety improvements ([#67](https://github.com/makspll/bevy_mod_scripting/pull/67)) +- Add lua documentation link to readme.md ([#107](https://github.com/makspll/bevy_mod_scripting/pull/107)) +- Update readme.md ([#101](https://github.com/makspll/bevy_mod_scripting/pull/101)) +- Bump tealr & mlua versions ([#96](https://github.com/makspll/bevy_mod_scripting/pull/96)) +- Add Bevy 0.11 support ([#63](https://github.com/makspll/bevy_mod_scripting/pull/63)) +- Add fallback logo image pointing to github ([#58](https://github.com/makspll/bevy_mod_scripting/pull/58)) +- Bevy 0.10 support ([#47](https://github.com/makspll/bevy_mod_scripting/pull/47)) +- Fix typos in readme.md ([#44](https://github.com/makspll/bevy_mod_scripting/pull/44)) +- Update readme.md +- ignore test +- change test +- update readme and release files +- Add Rhai Bevy API ([#40](https://github.com/makspll/bevy_mod_scripting/pull/40)) +- Update to 0.9.1 ([#38](https://github.com/makspll/bevy_mod_scripting/pull/38)) +- change CI and doctests +- Fix broken example links +- change readme.md +- Change readme.md +- make build sync with hot reloading teal +- update link +- update game_of_life and add video to readme +- game of life example complete +- Add prelude and some more cleanup +- readme links fix +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into add_general_api +- change readme and remove old benches +- rename feature, small fixes, some env config +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into switch_to_mlua_tealr +- change readme.md +- Update readme.md +- Update readme.md +- Merge pull request #8 from makspll/add_event_recipients +- add event recipient functionality +- renamed crate to bevy_mod_scripting +- Update readme.md +- Update readme.md +- Update readme.md +- cleaned up readme.md +- added logo to readme +- typo +- cleaned up readme.md examples +- upgraded rlua callback arg type support +- formatting +- Merge branch 'main' of https://github.com/makspll/bevy_scripting into main +- implemented builder trait for app and changed example +- remove bs in docs +- updated readme.md +- added initial functionality + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/lua_language_server_lad_backend-v0.16.0...lua_language_server_lad_backend-v0.16.1) - 2025-11-06 ### Added diff --git a/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml b/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml index 28e9abced..1c74a8691 100644 --- a/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml +++ b/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml @@ -18,7 +18,7 @@ clap = { version = "4", features = ["derive"] } anyhow = "1" tera = "1.20" strum = { version = "0.25", features = ["derive"] } -ladfile = { path = "../../ladfile", version = "0.17.0" } +ladfile = { path = "../../ladfile", version = "0.17.1" } env_logger = "0.11" log = "0.4" serde = { version = "1.0", features = ["derive"] }