diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a8149a65d..437435d964 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.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.20.0...v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [0.21.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.20.0...v0.21.0) - 2026-07-29 ### Added diff --git a/Cargo.toml b/Cargo.toml index faefcc3611..95c0766e31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories.workspace = true readme.workspace = true [workspace.package] -version = "0.21.0" +version = "0.21.1" 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.21.0" } +bevy_mod_scripting_test_scenario_syntax = { path = "crates/testing_crates/bevy_mod_scripting_test_scenario_syntax", version = "0.21.1" } test_utils = { path = "crates/testing_crates/test_utils" } -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_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.21.1", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.21.1" } +bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.21.1", default-features = false } +ladfile = { path = "crates/ladfile", version = "0.21.1" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.21.1" } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.21.1", default-features = false } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.21.1", default-features = false } +bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.21.1", default-features = false } +bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.21.1", default-features = false } +bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.21.1", default-features = false } +bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.21.1", default-features = false } +bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.21.1", default-features = false } +lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.21.1", default-features = false } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.21.1" } +bevy_mod_scripting_world = { path = "crates/bevy_mod_scripting_world", version = "0.21.1", default-features = true} # bevy diff --git a/crates/bevy_mod_scripting_bindings/CHANGELOG.md b/crates/bevy_mod_scripting_bindings/CHANGELOG.md index 358e0fcd88..49e9768082 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.20.0...bevy_mod_scripting_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index b32808980a..2bf01af5b0 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.20.0...bevy_mod_scripting_core-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bevy_mod_scripting_display/CHANGELOG.md b/crates/bevy_mod_scripting_display/CHANGELOG.md index 17cd0a164e..27d6e47549 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.20.0...bevy_mod_scripting_display-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index b40b5a70f4..cf24a9e5f2 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.21.0" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.21.0" } +bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.21.1" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.21.1" } bevy_mod_scripting_world = { workspace = true } -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.21.0" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.21.1" } 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.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 } +bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.21.1", optional = true } +bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.21.1", optional = true } +bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.21.1", optional = true } +bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.21.1", optional = true } +bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.21.1", optional = true } +bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.21.1", optional = true } +bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.21.1", optional = true } +bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.21.1", optional = true } +bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.21.1", optional = true } +bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.21.1", optional = true } +bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.21.1", optional = true } +bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.21.1", optional = true } +bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.21.1", optional = true } +bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.21.1", optional = true } +bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.21.1", optional = true } +bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.21.1", optional = true } +bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.21.1", optional = true } +bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.21.1", optional = true } +bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.21.1", optional = true } +bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.21.1", optional = true } +bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.21.1", optional = true } +bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.21.1", optional = true } +bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.21.1", optional = true } +bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.21.1", optional = true } +bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.21.1", optional = true } +bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.21.1", optional = true } +bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.21.1", optional = true } +bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.21.1", optional = true } +bevy_ui_widgets_bms_bindings = { path = "../bindings/bevy_ui_widgets_bms_bindings", version = "0.21.1", optional = true } [lints] workspace = true diff --git a/crates/bevy_mod_scripting_world/CHANGELOG.md b/crates/bevy_mod_scripting_world/CHANGELOG.md index f5848d2950..83b3f7ec38 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_world-v0.20.0...bevy_mod_scripting_world-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bevy_system_reflection/CHANGELOG.md b/crates/bevy_system_reflection/CHANGELOG.md index bf813ab723..f07bed36ff 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_system_reflection-v0.20.0...bevy_system_reflection-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md index ba05596c92..afb8b9e0fe 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_a11y_bms_bindings-v0.20.0...bevy_a11y_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md index 1dde3a5dac..3ac7f2a57d 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_animation_bms_bindings-v0.20.0...bevy_animation_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md index 7bea2b4f05..3b4034ba90 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_asset_bms_bindings-v0.20.0...bevy_asset_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md index 5f6df510f4..cdbfc09325 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_camera_bms_bindings-v0.20.0...bevy_camera_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md index 9ce1769af1..91a2daff8e 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_color_bms_bindings-v0.20.0...bevy_color_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md index 25baa79781..48fd2085ee 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_core_pipeline_bms_bindings-v0.20.0...bevy_core_pipeline_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md index efeb6c930d..a11b824497 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ecs_bms_bindings-v0.20.0...bevy_ecs_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md index 1dbaae18c0..97eb2a1ff0 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gizmos_bms_bindings-v0.20.0...bevy_gizmos_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md index 40ee514e41..2894f99b4b 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_gltf_bms_bindings-v0.20.0...bevy_gltf_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md index 562a39e056..cae065a0c1 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_image_bms_bindings-v0.20.0...bevy_image_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md index 873678a044..16c58e3990 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_bms_bindings-v0.20.0...bevy_input_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md index 926cef8923..92e82f9bb6 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_input_focus_bms_bindings-v0.20.0...bevy_input_focus_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_light_bms_bindings/CHANGELOG.md index d5ad9cbbcb..1d0ff54a92 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_light_bms_bindings-v0.20.0...bevy_light_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md index c229a802c7..2d4f326b18 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_math_bms_bindings-v0.20.0...bevy_math_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md index eec93214fc..8246ce3972 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mesh_bms_bindings-v0.20.0...bevy_mesh_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md index acd839b312..36f5f0a25f 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_pbr_bms_bindings-v0.20.0...bevy_pbr_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md index d7789bef2b..c92e5f011d 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_picking_bms_bindings-v0.20.0...bevy_picking_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_post_process_bms_bindings/CHANGELOG.md index f1815ec773..4271402961 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_post_process_bms_bindings-v0.20.0...bevy_post_process_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md index a81761c8ed..86bb39129a 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_reflect_bms_bindings-v0.20.0...bevy_reflect_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md index 7697d1498b..6234696eef 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_render_bms_bindings-v0.20.0...bevy_render_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md index d29304fb08..3132fc3928 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_scene_bms_bindings-v0.20.0...bevy_scene_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md index efb17a76f0..5ae6f069d7 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_bms_bindings-v0.20.0...bevy_sprite_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_render_bms_bindings/CHANGELOG.md index 9ac171e065..cadad78596 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_sprite_render_bms_bindings-v0.20.0...bevy_sprite_render_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md index 198e71b41b..4d48b8f9c3 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_text_bms_bindings-v0.20.0...bevy_text_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md index ed44f34553..f21b7aab72 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_time_bms_bindings-v0.20.0...bevy_time_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md index 70fff65497..8645bfa3ff 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_transform_bms_bindings-v0.20.0...bevy_transform_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_bms_bindings/CHANGELOG.md index ec512734af..f831d0459d 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_bms_bindings-v0.20.0...bevy_ui_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_render_bms_bindings/CHANGELOG.md index 0df2ea8951..a6e133b5b0 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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_render_bms_bindings-v0.20.0...bevy_ui_render_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 diff --git a/crates/bindings/bevy_ui_widgets_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ui_widgets_bms_bindings/CHANGELOG.md index 45a5fd21c4..a010246ee7 100644 --- a/crates/bindings/bevy_ui_widgets_bms_bindings/CHANGELOG.md +++ b/crates/bindings/bevy_ui_widgets_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.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_ui_widgets_bms_bindings-v0.21.0...bevy_ui_widgets_bms_bindings-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 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 f3a243aa2c..dc242843f2 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.1](https://github.com/makspll/bevy_mod_scripting/compare/lua_language_server_lad_backend-v0.20.0...lua_language_server_lad_backend-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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 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 d3781d59de..593a0eade5 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.21.0" } +ladfile = { path = "../../ladfile", version = "0.21.1" } 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 7ede22b973..a6cca6af68 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.1](https://github.com/makspll/bevy_mod_scripting/compare/ladfile_builder-v0.20.0...ladfile_builder-v0.21.1) - 2026-07-30 + +### Added + +- bevy 0.19 ([#547](https://github.com/makspll/bevy_mod_scripting/pull/547)) + ## [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