diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ad530e39..44799fc3d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/v0.17.0...v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [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 d1d24cd4c5..475b6e6f69 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.18.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -131,20 +131,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.18.0", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.18.0" } +bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.18.0", default-features = false } +ladfile = { path = "crates/ladfile", version = "0.18.0" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.18.0" } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.18.0", default-features = false } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.18.0", default-features = false } +bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.18.0", default-features = false } +bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.18.0", default-features = false } +bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.18.0", default-features = false } +bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.18.0", default-features = false } +bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.18.0", default-features = false } +lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.18.0", default-features = false } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.18.0" } # bevy diff --git a/crates/bevy_mod_scripting_bindings/CHANGELOG.md b/crates/bevy_mod_scripting_bindings/CHANGELOG.md index 7e097a71df..4426554140 100644 --- a/crates/bevy_mod_scripting_bindings/CHANGELOG.md +++ b/crates/bevy_mod_scripting_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.17.0...bevy_mod_scripting_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.16.0...bevy_mod_scripting_bindings-v0.16.1) - 2025-11-06 ### Added diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index e5c41b8c50..045449bffe 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.17.0...bevy_mod_scripting_core-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.16.0...bevy_mod_scripting_core-v0.16.1) - 2025-11-06 ### Added diff --git a/crates/bevy_mod_scripting_functions/CHANGELOG.md b/crates/bevy_mod_scripting_functions/CHANGELOG.md index 079ebc05b1..0eb93b25c0 100644 --- a/crates/bevy_mod_scripting_functions/CHANGELOG.md +++ b/crates/bevy_mod_scripting_functions/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.17.0...bevy_mod_scripting_functions-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.16.0...bevy_mod_scripting_functions-v0.16.1) - 2025-11-06 ### Added diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index d8a90d5b37..0137bc950e 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -54,9 +54,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.18.0" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.18.0" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.18.0" } bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] } bevy_app = { workspace = true } @@ -64,34 +64,34 @@ 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_camera_bms_bindings = { path = "../bindings/bevy_camera_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_light_bms_bindings = { path = "../bindings/bevy_light_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_post_process_bms_bindings = { path = "../bindings/bevy_post_process_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_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_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_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.17.0", optional = true } -bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.17.0", optional = true } +bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.18.0", optional = true } +bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.18.0", optional = true } +bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.18.0", optional = true } +bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.18.0", optional = true } +bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.18.0", optional = true } +bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.18.0", optional = true } +bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.18.0", optional = true } +bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.18.0", optional = true } +bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.18.0", optional = true } +bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.18.0", optional = true } +bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.18.0", optional = true } +bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.18.0", optional = true } +bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.18.0", optional = true } +bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.18.0", optional = true } +bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.18.0", optional = true } +bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.18.0", optional = true } +bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.18.0", optional = true } +bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.18.0", optional = true } +bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.18.0", optional = true } +bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.18.0", optional = true } +bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.18.0", optional = true } +bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.18.0", optional = true } +bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.18.0", optional = true } +bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.18.0", optional = true } +bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.18.0", optional = true } +bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.18.0", optional = true } +bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.18.0", optional = true } +bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.18.0", optional = true } [lints] workspace = true diff --git a/crates/bevy_mod_scripting_script/CHANGELOG.md b/crates/bevy_mod_scripting_script/CHANGELOG.md index 5f3d0fd21f..45f500fdb6 100644 --- a/crates/bevy_mod_scripting_script/CHANGELOG.md +++ b/crates/bevy_mod_scripting_script/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.17.0...bevy_mod_scripting_script-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.16.0...bevy_mod_scripting_script-v0.16.1) - 2025-11-06 ### Added diff --git a/crates/bevy_system_reflection/CHANGELOG.md b/crates/bevy_system_reflection/CHANGELOG.md index 761c97b713..206b4f2bce 100644 --- a/crates/bevy_system_reflection/CHANGELOG.md +++ b/crates/bevy_system_reflection/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_system_reflection-v0.17.0...bevy_system_reflection-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-bevy_system_reflection...v0.3.1-bevy_system_reflection) - 2025-11-06 ### Added diff --git a/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md index 4048d843bf..1f3368d85b 100644 --- a/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.17.0...bevy_a11y_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.15.1...bevy_a11y_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md index a32baeb445..1c16137a7d 100644 --- a/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.17.0...bevy_animation_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.15.1...bevy_animation_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md index 7b94d3defe..9067225d0c 100644 --- a/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.17.0...bevy_asset_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.15.1...bevy_asset_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..754b5dae0d --- /dev/null +++ b/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_camera_bms_bindings-v0.17.0...bevy_camera_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) diff --git a/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md index da46a73240..418f6c467a 100644 --- a/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.17.0...bevy_color_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.15.1...bevy_color_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md index 389ff000c9..c0f83f1bf7 100644 --- a/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.17.0...bevy_core_pipeline_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.15.1...bevy_core_pipeline_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md index 539de78e38..e58d456429 100644 --- a/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.17.0...bevy_ecs_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.15.1...bevy_ecs_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md index 31d89f7593..c746f17a28 100644 --- a/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.17.0...bevy_gizmos_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.15.1...bevy_gizmos_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md index a57c51cb55..33751db512 100644 --- a/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.17.0...bevy_gltf_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.15.1...bevy_gltf_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md index 07febeb853..c49d96cff0 100644 --- a/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.17.0...bevy_image_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.15.1...bevy_image_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md index 7f903919ae..a63c8cfcbd 100644 --- a/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.17.0...bevy_input_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.15.1...bevy_input_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md index a6d107fe17..2afb716d69 100644 --- a/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.17.0...bevy_input_focus_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.15.1...bevy_input_focus_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..41a30a45e7 --- /dev/null +++ b/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_light_bms_bindings-v0.17.0...bevy_light_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) diff --git a/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md index 38794e8f18..fef6f1f56e 100644 --- a/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.17.0...bevy_math_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.15.1...bevy_math_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md index 6f60620e89..00e932cf5f 100644 --- a/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.17.0...bevy_mesh_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.15.1...bevy_mesh_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md index b209ee4788..a1bfb06daa 100644 --- a/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.17.0...bevy_pbr_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.15.1...bevy_pbr_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md index 0e9e248320..2573e74d2a 100644 --- a/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.17.0...bevy_picking_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.15.1...bevy_picking_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..8d28d4a92c --- /dev/null +++ b/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_post_process_bms_bindings-v0.17.0...bevy_post_process_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) diff --git a/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md index ccd3bd56e5..a497764f97 100644 --- a/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.17.0...bevy_reflect_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.15.1...bevy_reflect_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md index 35b07c895c..b16d090471 100644 --- a/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.17.0...bevy_render_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.15.1...bevy_render_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md index a6f9936b80..57cd4204ff 100644 --- a/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.17.0...bevy_scene_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.15.1...bevy_scene_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md index e5dc5f3aa0..82f1c1127e 100644 --- a/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.17.0...bevy_sprite_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.15.1...bevy_sprite_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..708341fa8b --- /dev/null +++ b/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_sprite_render_bms_bindings-v0.17.0...bevy_sprite_render_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) diff --git a/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md index 8a3d4d81bf..d2099ab18c 100644 --- a/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.17.0...bevy_text_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.15.1...bevy_text_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md index c360e76a22..9b011b8804 100644 --- a/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.17.0...bevy_time_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.15.1...bevy_time_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md index c1c5f6bd86..2494c69abf 100644 --- a/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.17.0...bevy_transform_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.15.1...bevy_transform_bms_bindings-v0.16.0) - 2025-09-22 ### Added diff --git a/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..7943be5ea5 --- /dev/null +++ b/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_ui_bms_bindings-v0.17.0...bevy_ui_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) diff --git a/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..1a084ad335 --- /dev/null +++ b/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_ui_render_bms_bindings-v0.17.0...bevy_ui_render_bms_bindings-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) 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 28e9abcedb..74c994fb39 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.18.0" } env_logger = "0.11" log = "0.4" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md b/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md index eec0d419f1..8635b109b2 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/mdbook_lad_preprocessor-v0.17.0...mdbook_lad_preprocessor-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-mdbook_lad_preprocessor...v0.3.1-mdbook_lad_preprocessor) - 2025-11-06 ### Added diff --git a/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md b/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md index fe4f8e3f4b..60d01a0dba 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.18.0](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.17.0...bevy_mod_scripting_lua-v0.18.0) - 2026-01-09 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/mgi388/bevy_mod_scripting/pull/498)) + ## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.16.0...bevy_mod_scripting_lua-v0.16.1) - 2025-11-06 ### Added