diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ad530e39..73c5e2bdba 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/makspll/bevy_mod_scripting/compare/v0.17.0...v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..962e488e53 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/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.17.0...bevy_mod_scripting_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..44fcb92cb0 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/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.17.0...bevy_mod_scripting_core-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..08f97872ca 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/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.17.0...bevy_mod_scripting_functions-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..fbea6ca1b4 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/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.17.0...bevy_mod_scripting_script-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..d100f3760b 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/makspll/bevy_mod_scripting/compare/bevy_system_reflection-v0.17.0...bevy_system_reflection-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..fe6a098bbb 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/makspll/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.17.0...bevy_a11y_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..43700bb7ca 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/makspll/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.17.0...bevy_animation_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..4f34610aa6 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/makspll/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.17.0...bevy_asset_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..101aaacd51 --- /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/makspll/bevy_mod_scripting/compare/bevy_camera_bms_bindings-v0.17.0...bevy_camera_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..32fd40e7c9 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/makspll/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.17.0...bevy_color_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..2a391079cb 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/makspll/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.17.0...bevy_core_pipeline_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..402a24425b 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/makspll/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.17.0...bevy_ecs_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..dd7487a576 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/makspll/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.17.0...bevy_gizmos_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..337344a4c9 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/makspll/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.17.0...bevy_gltf_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..d218b7b820 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/makspll/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.17.0...bevy_image_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..197294adc6 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/makspll/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.17.0...bevy_input_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..39e0439fea 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/makspll/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.17.0...bevy_input_focus_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..0f3f2245cf --- /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/makspll/bevy_mod_scripting/compare/bevy_light_bms_bindings-v0.17.0...bevy_light_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..4bb500ba8c 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/makspll/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.17.0...bevy_math_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..d3b69fe990 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/makspll/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.17.0...bevy_mesh_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..dbf27bf450 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/makspll/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.17.0...bevy_pbr_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..48744be6e3 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/makspll/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.17.0...bevy_picking_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..184d0d8e1c --- /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/makspll/bevy_mod_scripting/compare/bevy_post_process_bms_bindings-v0.17.0...bevy_post_process_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..8dfe43d5ec 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/makspll/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.17.0...bevy_reflect_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..5dba3ff92f 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/makspll/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.17.0...bevy_render_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..f4ef1881bf 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/makspll/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.17.0...bevy_scene_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..23bd99c17c 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/makspll/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.17.0...bevy_sprite_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..c6914a2b03 --- /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/makspll/bevy_mod_scripting/compare/bevy_sprite_render_bms_bindings-v0.17.0...bevy_sprite_render_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..80abc7478d 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/makspll/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.17.0...bevy_text_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..72edfec9b8 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/makspll/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.17.0...bevy_time_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..1d64c023d6 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/makspll/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.17.0...bevy_transform_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..3a22c0f203 --- /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/makspll/bevy_mod_scripting/compare/bevy_ui_bms_bindings-v0.17.0...bevy_ui_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..3a55152117 --- /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/makspll/bevy_mod_scripting/compare/bevy_ui_render_bms_bindings-v0.17.0...bevy_ui_render_bms_bindings-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..9a279ce90e 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/makspll/bevy_mod_scripting/compare/mdbook_lad_preprocessor-v0.17.0...mdbook_lad_preprocessor-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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..8d51b48f45 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/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.17.0...bevy_mod_scripting_lua-v0.18.0) - 2026-01-06 + +### Added + +- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/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