From 3afed8bf6d7eaed3bf99261c863c6410ed943db3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 19:37:52 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 18 +++++++++--------- crates/bevy_mod_scripting_core/CHANGELOG.md | 8 ++++++++ crates/bevy_mod_scripting_core/Cargo.toml | 2 +- crates/bevy_mod_scripting_derive/CHANGELOG.md | 6 ++++++ crates/bevy_mod_scripting_derive/Cargo.toml | 2 +- .../bevy_mod_scripting_functions/CHANGELOG.md | 11 +++++++++++ crates/bevy_mod_scripting_functions/Cargo.toml | 8 ++++---- crates/bevy_system_reflection/CHANGELOG.md | 6 ++++++ crates/bevy_system_reflection/Cargo.toml | 2 +- .../bevy_a11y_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_animation_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_asset_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_color_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../CHANGELOG.md | 14 ++++++++++++++ .../bevy_ecs_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_gizmos_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_gltf_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_image_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_input_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_input_focus_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_math_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_mesh_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_pbr_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_picking_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_reflect_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_render_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_scene_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_sprite_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_text_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_time_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../bevy_transform_bms_bindings/CHANGELOG.md | 14 ++++++++++++++ .../mdbook_lad_preprocessor/CHANGELOG.md | 6 ++++++ .../mdbook_lad_preprocessor/Cargo.toml | 2 +- crates/ladfile/CHANGELOG.md | 6 ++++++ crates/ladfile/Cargo.toml | 2 +- crates/ladfile_builder/CHANGELOG.md | 6 ++++++ crates/ladfile_builder/Cargo.toml | 2 +- .../bevy_mod_scripting_lua/CHANGELOG.md | 8 ++++++++ .../bevy_mod_scripting_lua/Cargo.toml | 2 +- .../bevy_mod_scripting_rhai/CHANGELOG.md | 8 ++++++++ .../bevy_mod_scripting_rhai/Cargo.toml | 2 +- 42 files changed, 408 insertions(+), 21 deletions(-) create mode 100644 crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_color_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_image_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_input_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_math_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_render_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_text_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_time_bms_bindings/CHANGELOG.md create mode 100644 crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 014ae94be0..31af7cb5f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.16.0) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) +- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462)) + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) +- restructure monorepo, rename `bevy_api_gen` to `bevy_mod_scripting_codegen` ([#461](https://github.com/makspll/bevy_mod_scripting/pull/461)) +- inline `CallbackBuilder

` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456)) +- inline `CallbackSettings

` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455)) + ## [0.15.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.0...v0.15.1) - 2025-08-18 ### Changed diff --git a/Cargo.toml b/Cargo.toml index e9a301cd9a..631937b3fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting" -version = "0.15.1" +version = "0.16.0" authors = ["Maksymilian Mozolewski "] edition = "2024" license = "MIT OR Apache-2.0" @@ -103,16 +103,16 @@ bevy_mod_scripting_derive = { workspace = true } # local crates script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" } test_utils = { path = "crates/testing_crates/test_utils" } -bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.15.1", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.15.1" } -bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.2.0", default-features = false } -ladfile = { path = "crates/ladfile", version = "0.5.0" } -ladfile_builder = { path = "crates/ladfile_builder", version = "0.5.1" } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.15.1", default-features = false } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.15.1", default-features = false } +bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.0", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" } +bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.0", default-features = false } +ladfile = { path = "crates/ladfile", version = "0.6.0" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false } # bevy -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.15.1" } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" } bevy = { version = "0.16.0", default-features = false } bevy_math = { version = "0.16.0", default-features = false, features = ["std"] } bevy_transform = { version = "0.16.0", default-features = false } diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index 5729597dac..85686adf03 100644 --- a/crates/bevy_mod_scripting_core/CHANGELOG.md +++ b/crates/bevy_mod_scripting_core/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.15.1...bevy_mod_scripting_core-v0.16.0) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) +- inline `CallbackBuilder

` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456)) +- inline `CallbackSettings

` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455)) + ## [0.15.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.15.0...bevy_mod_scripting_core-v0.15.1) - 2025-08-18 ### Changed diff --git a/crates/bevy_mod_scripting_core/Cargo.toml b/crates/bevy_mod_scripting_core/Cargo.toml index 1a88236531..1626ed353b 100644 --- a/crates/bevy_mod_scripting_core/Cargo.toml +++ b/crates/bevy_mod_scripting_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_core" -version = "0.15.1" +version = "0.16.0" authors = ["Maksymilian Mozolewski "] edition = "2024" license = "MIT OR Apache-2.0" diff --git a/crates/bevy_mod_scripting_derive/CHANGELOG.md b/crates/bevy_mod_scripting_derive/CHANGELOG.md index b3c5037aa4..31c679285d 100644 --- a/crates/bevy_mod_scripting_derive/CHANGELOG.md +++ b/crates/bevy_mod_scripting_derive/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.15.1...bevy_mod_scripting_derive-v0.16.0) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.12.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.11.1...bevy_mod_scripting_derive-v0.12.0) - 2025-04-07 ### Fixed diff --git a/crates/bevy_mod_scripting_derive/Cargo.toml b/crates/bevy_mod_scripting_derive/Cargo.toml index 8cc2f6cd3c..f946b6af2c 100644 --- a/crates/bevy_mod_scripting_derive/Cargo.toml +++ b/crates/bevy_mod_scripting_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_derive" -version = "0.15.1" +version = "0.16.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/bevy_mod_scripting_functions/CHANGELOG.md b/crates/bevy_mod_scripting_functions/CHANGELOG.md index 71120d8384..e7d7c455d9 100644 --- a/crates/bevy_mod_scripting_functions/CHANGELOG.md +++ b/crates/bevy_mod_scripting_functions/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.15.1...bevy_mod_scripting_functions-v0.16.0) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) +- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462)) + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.15.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.15.0...bevy_mod_scripting_functions-v0.15.1) - 2025-08-18 ### Changed diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index 1f9265755a..e2681487e1 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_functions" -version = "0.15.1" +version = "0.16.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -44,9 +44,9 @@ rhai_bindings = ["bevy_mod_scripting_rhai"] profiling = { workspace = true } bevy_mod_scripting_core = { workspace = true } bevy_mod_scripting_derive = { workspace = true } -bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.15.1" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.15.1" } -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.2.0" } +bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.16.0" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.0" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.3.0" } bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] } bevy_app = { workspace = true } diff --git a/crates/bevy_system_reflection/CHANGELOG.md b/crates/bevy_system_reflection/CHANGELOG.md index 6c456fa285..313bf0ea87 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.3.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.2.0-bevy_system_reflection...v0.3.0-bevy_system_reflection) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.2.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.1.2-bevy_system_reflection...v0.2.0-bevy_system_reflection) - 2025-08-13 ### Added diff --git a/crates/bevy_system_reflection/Cargo.toml b/crates/bevy_system_reflection/Cargo.toml index 2899c6d6ab..7d7b9237af 100644 --- a/crates/bevy_system_reflection/Cargo.toml +++ b/crates/bevy_system_reflection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_system_reflection" -version = "0.2.0" +version = "0.3.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..a68ff82e2b --- /dev/null +++ b/crates/bindings/bevy_a11y_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_a11y_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..274a1f979b --- /dev/null +++ b/crates/bindings/bevy_animation_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_animation_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..3c2e0a09bc --- /dev/null +++ b/crates/bindings/bevy_asset_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_asset_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_color_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..44f08e67cd --- /dev/null +++ b/crates/bindings/bevy_color_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_color_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..8b60851d3a --- /dev/null +++ b/crates/bindings/bevy_core_pipeline_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_core_pipeline_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..821559b89c --- /dev/null +++ b/crates/bindings/bevy_ecs_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_ecs_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..4d8fecc6d8 --- /dev/null +++ b/crates/bindings/bevy_gizmos_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_gizmos_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..79cbe859e9 --- /dev/null +++ b/crates/bindings/bevy_gltf_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_gltf_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_image_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..0342d43566 --- /dev/null +++ b/crates/bindings/bevy_image_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_image_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..69f1fc4ee7 --- /dev/null +++ b/crates/bindings/bevy_input_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_input_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_input_focus_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..9a3319b495 --- /dev/null +++ b/crates/bindings/bevy_input_focus_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_input_focus_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_math_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..0683644eff --- /dev/null +++ b/crates/bindings/bevy_math_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_math_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_mesh_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..8dee74e839 --- /dev/null +++ b/crates/bindings/bevy_mesh_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_mesh_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_pbr_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..39f5970b02 --- /dev/null +++ b/crates/bindings/bevy_pbr_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_pbr_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_picking_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..256e277192 --- /dev/null +++ b/crates/bindings/bevy_picking_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_picking_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_reflect_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..b38648815b --- /dev/null +++ b/crates/bindings/bevy_reflect_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_reflect_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_render_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..610c65b36f --- /dev/null +++ b/crates/bindings/bevy_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_render_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_scene_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..9a532b0f2e --- /dev/null +++ b/crates/bindings/bevy_scene_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_scene_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_sprite_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..4d1dc50417 --- /dev/null +++ b/crates/bindings/bevy_sprite_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_sprite_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_text_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..a31a859b9d --- /dev/null +++ b/crates/bindings/bevy_text_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_text_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_time_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..8bd25790b7 --- /dev/null +++ b/crates/bindings/bevy_time_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_time_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md b/crates/bindings/bevy_transform_bms_bindings/CHANGELOG.md new file mode 100644 index 0000000000..8af43b286f --- /dev/null +++ b/crates/bindings/bevy_transform_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.15.1](https://github.com/makspll/bevy_mod_scripting/releases/tag/bevy_transform_bms_bindings-v0.15.1) - 2025-08-25 + +### Added + +- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467)) diff --git a/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md b/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md index a44159a7ce..15349b5e4e 100644 --- a/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md +++ b/crates/lad_backends/mdbook_lad_preprocessor/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.2.0-mdbook_lad_preprocessor...v0.3.0-mdbook_lad_preprocessor) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.2.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.1.10-mdbook_lad_preprocessor...v0.2.0-mdbook_lad_preprocessor) - 2025-08-14 ### Added diff --git a/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml b/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml index 939873041c..8549790612 100644 --- a/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml +++ b/crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook_lad_preprocessor" -version = "0.2.0" +version = "0.3.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/ladfile/CHANGELOG.md b/crates/ladfile/CHANGELOG.md index f645cefb77..29b79e3722 100644 --- a/crates/ladfile/CHANGELOG.md +++ b/crates/ladfile/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.5.0-ladfile...v0.6.0-ladfile) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.5.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.4.0-ladfile...v0.5.0-ladfile) - 2025-03-29 ### Added diff --git a/crates/ladfile/Cargo.toml b/crates/ladfile/Cargo.toml index 01b2845579..b5945539b5 100644 --- a/crates/ladfile/Cargo.toml +++ b/crates/ladfile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ladfile" -version = "0.5.0" +version = "0.6.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/ladfile_builder/CHANGELOG.md b/crates/ladfile_builder/CHANGELOG.md index 9d1a4dd336..8086914948 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.6.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.5.1-ladfile_builder...v0.6.0-ladfile_builder) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) + ## [0.5.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.4.0-ladfile_builder...v0.5.0-ladfile_builder) - 2025-08-14 ### Added diff --git a/crates/ladfile_builder/Cargo.toml b/crates/ladfile_builder/Cargo.toml index 80bd326c3f..9febe6ccc9 100644 --- a/crates/ladfile_builder/Cargo.toml +++ b/crates/ladfile_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ladfile_builder" -version = "0.5.1" +version = "0.6.0" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md b/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md index a94b7e5333..8cdae31803 100644 --- a/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md +++ b/crates/languages/bevy_mod_scripting_lua/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.15.1...bevy_mod_scripting_lua-v0.16.0) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) +- inline `CallbackBuilder

` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456)) +- inline `CallbackSettings

` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455)) + ## [0.15.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.14.0...bevy_mod_scripting_lua-v0.15.0) - 2025-08-14 ### Added diff --git a/crates/languages/bevy_mod_scripting_lua/Cargo.toml b/crates/languages/bevy_mod_scripting_lua/Cargo.toml index 53b5e69f0a..d56c8368d3 100644 --- a/crates/languages/bevy_mod_scripting_lua/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_lua/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_lua" -version = "0.15.1" +version = "0.16.0" authors = ["Maksymilian Mozolewski "] edition = "2024" license = "MIT OR Apache-2.0" diff --git a/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md b/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md index 147693d2c6..b55a8236c4 100644 --- a/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md +++ b/crates/languages/bevy_mod_scripting_rhai/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai-v0.15.1...bevy_mod_scripting_rhai-v0.16.0) - 2025-08-25 + +### Refactored + +- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463)) +- inline `CallbackBuilder

` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456)) +- inline `CallbackSettings

` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455)) + ## [0.15.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai-v0.14.0...bevy_mod_scripting_rhai-v0.15.0) - 2025-08-14 ### Added diff --git a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml index 6fd78d878e..38e47b06ff 100644 --- a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_rhai" -version = "0.15.1" +version = "0.16.0" authors = ["Maksymilian Mozolewski "] edition = "2024" license = "MIT OR Apache-2.0"