From 37a4c7470643986ffcd9de4227db8681a8663ede Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Oct 2025 20:12:13 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 8 ++ Cargo.toml | 22 ++--- .../bevy_mod_scripting_bindings/CHANGELOG.md | 8 ++ crates/bevy_mod_scripting_core/CHANGELOG.md | 6 ++ crates/bevy_mod_scripting_derive/CHANGELOG.md | 7 ++ .../bevy_mod_scripting_display/CHANGELOG.md | 7 ++ .../bevy_mod_scripting_functions/CHANGELOG.md | 7 ++ .../bevy_mod_scripting_functions/Cargo.toml | 48 ++++----- crates/bevy_mod_scripting_script/CHANGELOG.md | 99 +++++++++++++++++++ .../mdbook_lad_preprocessor/CHANGELOG.md | 6 ++ .../mdbook_lad_preprocessor/Cargo.toml | 2 +- crates/ladfile_builder/CHANGELOG.md | 6 ++ crates/ladfile_builder/Cargo.toml | 2 +- .../bevy_mod_scripting_lua/CHANGELOG.md | 6 ++ .../bevy_mod_scripting_rhai/CHANGELOG.md | 6 ++ 15 files changed, 203 insertions(+), 37 deletions(-) create mode 100644 crates/bevy_mod_scripting_script/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb0087a1f..66e0bb1c1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484)) +- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.16.0) - 2025-09-22 ### Added diff --git a/Cargo.toml b/Cargo.toml index 8912ebd0b0..a2c0886e49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories.workspace = true readme.workspace = true [workspace.package] -version = "0.16.0" +version = "0.17.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -118,20 +118,20 @@ bevy_mod_scripting_script = { workspace = 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.16.0", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" } +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.3.0", default-features = false } ladfile = { path = "crates/ladfile", version = "0.6.0" } -ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false } -bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.0", default-features = false } -bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.0", default-features = false } -bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.0", default-features = false } -bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.16.0", default-features = false } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.7.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_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 } # bevy -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" } bevy = { version = "0.16.0", default-features = false } bevy_math = { version = "0.16.0", default-features = false, features = ["std"] } bevy_transform = { version = "0.16.0", default-features = false } diff --git a/crates/bevy_mod_scripting_bindings/CHANGELOG.md b/crates/bevy_mod_scripting_bindings/CHANGELOG.md index 4dc5cf8171..a6b152826e 100644 --- a/crates/bevy_mod_scripting_bindings/CHANGELOG.md +++ b/crates/bevy_mod_scripting_bindings/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.16.0...bevy_mod_scripting_bindings-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484)) +- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.15.1...bevy_mod_scripting_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index c79a1cc899..afa69d792f 100644 --- a/crates/bevy_mod_scripting_core/CHANGELOG.md +++ b/crates/bevy_mod_scripting_core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.16.0...bevy_mod_scripting_core-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.15.1...bevy_mod_scripting_core-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bevy_mod_scripting_derive/CHANGELOG.md b/crates/bevy_mod_scripting_derive/CHANGELOG.md index 6a65edc03a..760490ebbe 100644 --- a/crates/bevy_mod_scripting_derive/CHANGELOG.md +++ b/crates/bevy_mod_scripting_derive/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.16.0...bevy_mod_scripting_derive-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.15.1...bevy_mod_scripting_derive-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bevy_mod_scripting_display/CHANGELOG.md b/crates/bevy_mod_scripting_display/CHANGELOG.md index 11bddf32c5..ead5c2c2bd 100644 --- a/crates/bevy_mod_scripting_display/CHANGELOG.md +++ b/crates/bevy_mod_scripting_display/CHANGELOG.md @@ -6,3 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.16.0...bevy_mod_scripting_display-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484)) diff --git a/crates/bevy_mod_scripting_functions/CHANGELOG.md b/crates/bevy_mod_scripting_functions/CHANGELOG.md index a2550f914c..2dc3416253 100644 --- a/crates/bevy_mod_scripting_functions/CHANGELOG.md +++ b/crates/bevy_mod_scripting_functions/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.16.0...bevy_mod_scripting_functions-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.15.1...bevy_mod_scripting_functions-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index fb2c1a13b7..28247b223c 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -48,8 +48,8 @@ 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.16.0" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.0" } +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.3.0" } bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] } @@ -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.16.0", optional = true } -bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.16.0", optional = true } -bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.16.0", optional = true } -bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.16.0", optional = true } -bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.16.0", optional = true } -bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.16.0", optional = true } -bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.16.0", optional = true } -bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.16.0", optional = true } -bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.16.0", optional = true } -bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.16.0", optional = true } -bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.16.0", optional = true } -bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.16.0", optional = true } -bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.16.0", optional = true } -bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.16.0", optional = true } -bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.16.0", optional = true } -bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.16.0", optional = true } -bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.16.0", optional = true } -bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.16.0", optional = true } -bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.16.0", optional = true } -bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.16.0", optional = true } -bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.16.0", optional = true } -bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.16.0", optional = true } +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 } [lints] workspace = true diff --git a/crates/bevy_mod_scripting_script/CHANGELOG.md b/crates/bevy_mod_scripting_script/CHANGELOG.md new file mode 100644 index 0000000000..bfd30bff56 --- /dev/null +++ b/crates/bevy_mod_scripting_script/CHANGELOG.md @@ -0,0 +1,99 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.16.0...bevy_mod_scripting_script-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) +- 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 diff --git a/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md b/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md index 2eb5fa6f51..ce18e2ce6c 100644 --- a/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md +++ b/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-mdbook_lad_preprocessor...v0.3.1-mdbook_lad_preprocessor) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) + ## [0.3.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.2.0-mdbook_lad_preprocessor...v0.3.0-mdbook_lad_preprocessor) - 2025-09-22 ### Added diff --git a/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml b/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml index f81056813f..33978fdc65 100644 --- a/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml +++ b/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook_lad_preprocessor" -version = "0.3.0" +version = "0.3.1" description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate" readme = "readme.md" edition.workspace = true diff --git a/crates/ladfile_builder/CHANGELOG.md b/crates/ladfile_builder/CHANGELOG.md index 55254459ee..1596ce871f 100644 --- a/crates/ladfile_builder/CHANGELOG.md +++ b/crates/ladfile_builder/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.6.0-ladfile_builder...v0.7.0-ladfile_builder) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) + ## [0.6.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.5.1-ladfile_builder...v0.6.0-ladfile_builder) - 2025-09-22 ### Added diff --git a/crates/ladfile_builder/Cargo.toml b/crates/ladfile_builder/Cargo.toml index 39ed50bd5f..0959310204 100644 --- a/crates/ladfile_builder/Cargo.toml +++ b/crates/ladfile_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ladfile_builder" -version = "0.6.0" +version = "0.7.0" description = "Language Agnostic Declaration (LAD) file format for the bevy_mod_scripting crate" edition.workspace = true authors.workspace = true diff --git a/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md b/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md index 29b45934eb..96c8393ddc 100644 --- a/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md +++ b/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.16.0...bevy_mod_scripting_lua-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.15.1...bevy_mod_scripting_lua-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md b/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md index 92974102db..40778737fe 100644 --- a/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md +++ b/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai-v0.16.0...bevy_mod_scripting_rhai-v0.17.0) - 2025-10-12 + +### Added + +- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai-v0.15.1...bevy_mod_scripting_rhai-v0.16.0) - 2025-09-22 ### Added