diff --git a/CHANGELOG.md b/CHANGELOG.md index 33f7784974..3a8149a65d 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.20.0...v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.19.0...v0.20.0) - 2026-06-24 ### Added diff --git a/Cargo.toml b/Cargo.toml index c0be2d0045..faefcc3611 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories.workspace = true readme.workspace = true [workspace.package] -version = "0.20.0" +version = "0.21.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -131,24 +131,24 @@ ladfile_builder = { workspace = true, optional = true } [workspace.dependencies] # local crates script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" } -bevy_mod_scripting_test_scenario_syntax = { path = "crates/testing_crates/bevy_mod_scripting_test_scenario_syntax", version = "0.20.0" } +bevy_mod_scripting_test_scenario_syntax = { path = "crates/testing_crates/bevy_mod_scripting_test_scenario_syntax", version = "0.21.0" } test_utils = { path = "crates/testing_crates/test_utils" } -bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.20.0", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.20.0" } -bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.20.0", default-features = false } -ladfile = { path = "crates/ladfile", version = "0.20.0" } -ladfile_builder = { path = "crates/ladfile_builder", version = "0.20.0" } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.20.0", default-features = false } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.20.0", default-features = false } -bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.20.0", default-features = false } -bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.20.0", default-features = false } -bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.20.0", default-features = false } -bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.20.0", default-features = false } -bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.20.0", default-features = false } -lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.20.0", default-features = false } -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.20.0" } -bevy_mod_scripting_world = { path = "crates/bevy_mod_scripting_world", version = "0.20.0", default-features = true} +bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.21.0", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.21.0" } +bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.21.0", default-features = false } +ladfile = { path = "crates/ladfile", version = "0.21.0" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.21.0" } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.21.0", default-features = false } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.21.0", default-features = false } +bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.21.0", default-features = false } +bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.21.0", default-features = false } +bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.21.0", default-features = false } +bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.21.0", default-features = false } +bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.21.0", default-features = false } +lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.21.0", default-features = false } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.21.0" } +bevy_mod_scripting_world = { path = "crates/bevy_mod_scripting_world", version = "0.21.0", default-features = true} # bevy diff --git a/crates/bevy_mod_scripting_bindings/CHANGELOG.md b/crates/bevy_mod_scripting_bindings/CHANGELOG.md index a4d14ed526..358e0fcd88 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.20.0...bevy_mod_scripting_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.19.0...bevy_mod_scripting_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index 19a84602fe..b32808980a 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.20.0...bevy_mod_scripting_core-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.19.0...bevy_mod_scripting_core-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bevy_mod_scripting_display/CHANGELOG.md b/crates/bevy_mod_scripting_display/CHANGELOG.md index e470057b04..17cd0a164e 100644 --- a/crates/bevy_mod_scripting_display/CHANGELOG.md +++ b/crates/bevy_mod_scripting_display/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.20.0...bevy_mod_scripting_display-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.19.0...bevy_mod_scripting_display-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index fa6d60d3db..b40b5a70f4 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -55,10 +55,10 @@ 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.20.0" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.20.0" } +bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.21.0" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.21.0" } bevy_mod_scripting_world = { workspace = true } -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.20.0" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.21.0" } bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] } bevy_app = { workspace = true } @@ -67,35 +67,35 @@ bevy_log = { 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.20.0", optional = true } -bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.20.0", optional = true } -bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.20.0", optional = true } -bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.20.0", optional = true } -bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.20.0", optional = true } -bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.20.0", optional = true } -bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.20.0", optional = true } -bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.20.0", optional = true } -bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.20.0", optional = true } -bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.20.0", optional = true } -bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.20.0", optional = true } -bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.20.0", optional = true } -bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.20.0", optional = true } -bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.20.0", optional = true } -bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.20.0", optional = true } -bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.20.0", optional = true } -bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.20.0", optional = true } -bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.20.0", optional = true } -bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.20.0", optional = true } -bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.20.0", optional = true } -bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.20.0", optional = true } -bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.20.0", optional = true } -bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.20.0", optional = true } -bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.20.0", optional = true } -bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.20.0", optional = true } -bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.20.0", optional = true } -bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.20.0", optional = true } -bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.20.0", optional = true } -bevy_ui_widgets_bms_bindings = { path = "../bindings/bevy_ui_widgets_bms_bindings", version = "0.20.0", optional = true } +bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.21.0", optional = true } +bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.21.0", optional = true } +bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.21.0", optional = true } +bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.21.0", optional = true } +bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.21.0", optional = true } +bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.21.0", optional = true } +bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.21.0", optional = true } +bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.21.0", optional = true } +bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.21.0", optional = true } +bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.21.0", optional = true } +bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.21.0", optional = true } +bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.21.0", optional = true } +bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.21.0", optional = true } +bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.21.0", optional = true } +bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.21.0", optional = true } +bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.21.0", optional = true } +bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.21.0", optional = true } +bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.21.0", optional = true } +bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.21.0", optional = true } +bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.21.0", optional = true } +bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.21.0", optional = true } +bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.21.0", optional = true } +bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.21.0", optional = true } +bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.21.0", optional = true } +bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.21.0", optional = true } +bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.21.0", optional = true } +bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.21.0", optional = true } +bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.21.0", optional = true } +bevy_ui_widgets_bms_bindings = { path = "../bindings/bevy_ui_widgets_bms_bindings", version = "0.21.0", optional = true } [lints] workspace = true diff --git a/crates/bevy_mod_scripting_world/CHANGELOG.md b/crates/bevy_mod_scripting_world/CHANGELOG.md index cd5edc8e71..f5848d2950 100644 --- a/crates/bevy_mod_scripting_world/CHANGELOG.md +++ b/crates/bevy_mod_scripting_world/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_world-v0.20.0...bevy_mod_scripting_world-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_world-v0.19.0...bevy_mod_scripting_world-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bevy_system_reflection/CHANGELOG.md b/crates/bevy_system_reflection/CHANGELOG.md index e5be865f4b..bf813ab723 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_system_reflection-v0.20.0...bevy_system_reflection-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.19.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_system_reflection-v0.18.0...bevy_system_reflection-v0.19.0) - 2026-01-25 ### Added diff --git a/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md index 7d99036c43..ba05596c92 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.20.0...bevy_a11y_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.19.0...bevy_a11y_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md index 6d15b93cd2..1dde3a5dac 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.20.0...bevy_animation_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.19.0...bevy_animation_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md index b82c90310c..7bea2b4f05 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.20.0...bevy_asset_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.19.0...bevy_asset_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md index b9d55e31f4..5f6df510f4 100644 --- a/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_camera_bms_bindings-v0.20.0...bevy_camera_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_camera_bms_bindings-v0.19.0...bevy_camera_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md index 68a6bd98de..9ce1769af1 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.20.0...bevy_color_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.19.0...bevy_color_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md index f4142b130d..25baa79781 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.20.0...bevy_core_pipeline_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.19.0...bevy_core_pipeline_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md index de60fe5586..efeb6c930d 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.20.0...bevy_ecs_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.19.0...bevy_ecs_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md index 76336076ef..1dbaae18c0 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.20.0...bevy_gizmos_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.19.0...bevy_gizmos_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md index 2c5ed1f8a7..40ee514e41 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.20.0...bevy_gltf_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.19.0...bevy_gltf_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md index c16dd702ba..562a39e056 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.20.0...bevy_image_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.19.0...bevy_image_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md index 89ef381840..873678a044 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.20.0...bevy_input_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.19.0...bevy_input_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md index 1838b16582..926cef8923 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.20.0...bevy_input_focus_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.19.0...bevy_input_focus_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md index d9b556ed5e..d5ad9cbbcb 100644 --- a/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_light_bms_bindings-v0.20.0...bevy_light_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_light_bms_bindings-v0.19.0...bevy_light_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md index ef8d8949e6..c229a802c7 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.20.0...bevy_math_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.19.0...bevy_math_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md index ed03301e7c..eec93214fc 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.20.0...bevy_mesh_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.19.0...bevy_mesh_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md index 6178ba6b49..acd839b312 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.20.0...bevy_pbr_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.19.0...bevy_pbr_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md index 636117f456..d7789bef2b 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.20.0...bevy_picking_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.19.0...bevy_picking_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md index bb3304ebe8..f1815ec773 100644 --- a/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_post_process_bms_bindings-v0.20.0...bevy_post_process_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_post_process_bms_bindings-v0.19.0...bevy_post_process_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md index b80685ac99..a81761c8ed 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.20.0...bevy_reflect_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.19.0...bevy_reflect_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md index 0a362ff466..7697d1498b 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.20.0...bevy_render_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.19.0...bevy_render_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md index 17693722e4..d29304fb08 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.20.0...bevy_scene_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.19.0...bevy_scene_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md index a75e700230..efb17a76f0 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.20.0...bevy_sprite_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.19.0...bevy_sprite_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md index 4a24f5af67..9ac171e065 100644 --- a/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_sprite_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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_render_bms_bindings-v0.20.0...bevy_sprite_render_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_render_bms_bindings-v0.19.0...bevy_sprite_render_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md index ad02b77698..198e71b41b 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.20.0...bevy_text_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.19.0...bevy_text_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md index 9138465382..ed44f34553 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.20.0...bevy_time_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.19.0...bevy_time_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md index efec48f08d..70fff65497 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.20.0...bevy_transform_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.19.0...bevy_transform_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md index 877429c476..ec512734af 100644 --- a/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_bms_bindings-v0.20.0...bevy_ui_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_bms_bindings-v0.19.0...bevy_ui_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md index 7fc9b6724e..0df2ea8951 100644 --- a/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_ui_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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_render_bms_bindings-v0.20.0...bevy_ui_render_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_render_bms_bindings-v0.19.0...bevy_ui_render_bms_bindings-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/bindings/bevy_ui_widgets_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_widgets_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..45a5fd21c4 --- /dev/null +++ b/crates/bindings/bevy_ui_widgets_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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_widgets_bms_bindings-v0.20.0...bevy_ui_widgets_bms_bindings-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) diff --git a/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md b/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md index 08388713ee..f3a243aa2c 100644 --- a/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md +++ b/crates/lad_backends/lua_language_server_lad_backend/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/lua_language_server_lad_backend-v0.20.0...lua_language_server_lad_backend-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/lua_language_server_lad_backend-v0.19.0...lua_language_server_lad_backend-v0.20.0) - 2026-06-24 ### Added diff --git a/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml b/crates/lad_backends/lua_language_server_lad_backend/Cargo.toml index 9acf94b068..d3781d59de 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.20.0" } +ladfile = { path = "../../ladfile", version = "0.21.0" } env_logger = "0.11" log = "0.4" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/ladfile_builder/CHANGELOG.md b/crates/ladfile_builder/CHANGELOG.md index 8dbc3799ef..7ede22b973 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.21.0](https://github.com/makspll/bevy_mod_scripting/compare/ladfile_builder-v0.20.0...ladfile_builder-v0.21.0) - 2026-07-29 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.20.0](https://github.com/makspll/bevy_mod_scripting/compare/ladfile_builder-v0.19.0...ladfile_builder-v0.20.0) - 2026-06-24 ### Added