Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.17.0...v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.16.1) - 2025-11-06

### Added
Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories.workspace = true
readme.workspace = true

[workspace.package]
version = "0.17.0"
version = "0.18.0"
edition = "2024"
authors = ["Maksymilian Mozolewski <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -131,20 +131,20 @@ ladfile_builder = { workspace = true, optional = true }
# local crates
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
test_utils = { path = "crates/testing_crates/test_utils" }
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.0", default-features = false }
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.0" }
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.0", default-features = false }
ladfile = { path = "crates/ladfile", version = "0.17.0" }
ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.0" }
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.0", default-features = false }
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.0", default-features = false }
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.0", default-features = false }
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.0", default-features = false }
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.0", default-features = false }
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.0", default-features = false }
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.0", default-features = false }
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.0", default-features = false }
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" }
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.18.0", default-features = false }
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.18.0" }
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.18.0", default-features = false }
ladfile = { path = "crates/ladfile", version = "0.18.0" }
ladfile_builder = { path = "crates/ladfile_builder", version = "0.18.0" }
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.18.0", default-features = false }
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.18.0", default-features = false }
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.18.0", default-features = false }
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.18.0", default-features = false }
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.18.0", default-features = false }
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.18.0", default-features = false }
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.18.0", default-features = false }
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.18.0", default-features = false }
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.18.0" }

# bevy

Expand Down
6 changes: 6 additions & 0 deletions crates/bevy_mod_scripting_bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.17.0...bevy_mod_scripting_bindings-v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.16.0...bevy_mod_scripting_bindings-v0.16.1) - 2025-11-06

### Added
Expand Down
6 changes: 6 additions & 0 deletions crates/bevy_mod_scripting_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.17.0...bevy_mod_scripting_core-v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.16.0...bevy_mod_scripting_core-v0.16.1) - 2025-11-06

### Added
Expand Down
6 changes: 6 additions & 0 deletions crates/bevy_mod_scripting_functions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.17.0...bevy_mod_scripting_functions-v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.16.0...bevy_mod_scripting_functions-v0.16.1) - 2025-11-06

### Added
Expand Down
62 changes: 31 additions & 31 deletions crates/bevy_mod_scripting_functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,44 +54,44 @@ bevy_mod_scripting_display = { workspace = true }
bevy_mod_scripting_asset = { workspace = true }
bevy_mod_scripting_script = { workspace = true }
bevy_mod_scripting_derive = { workspace = true }
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.0" }
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.0" }
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.0" }
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.18.0" }
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.18.0" }
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.18.0" }

bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] }
bevy_app = { workspace = true }
bevy_asset = { workspace = true }
bevy_platform = { workspace = true, features = ["std"] }
bevy_reflect = { workspace = true, features = [] }

bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.0", optional = true }
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.0", optional = true }
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.0", optional = true }
bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.17.0", optional = true }
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.0", optional = true }
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.0", optional = true }
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.0", optional = true }
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.0", optional = true }
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.0", optional = true }
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.0", optional = true }
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.0", optional = true }
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.0", optional = true }
bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.17.0", optional = true }
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.0", optional = true }
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.0", optional = true }
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.0", optional = true }
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.0", optional = true }
bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.17.0", optional = true }
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.0", optional = true }
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.0", optional = true }
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.0", optional = true }
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.0", optional = true }
bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.17.0", optional = true }
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.0", optional = true }
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.0", optional = true }
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.0", optional = true }
bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.17.0", optional = true }
bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.17.0", optional = true }
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.18.0", optional = true }
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.18.0", optional = true }
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.18.0", optional = true }
bevy_camera_bms_bindings = { path = "../bindings/bevy_camera_bms_bindings", version = "0.18.0", optional = true }
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.18.0", optional = true }
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.18.0", optional = true }
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.18.0", optional = true }
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.18.0", optional = true }
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.18.0", optional = true }
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.18.0", optional = true }
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.18.0", optional = true }
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.18.0", optional = true }
bevy_light_bms_bindings = { path = "../bindings/bevy_light_bms_bindings", version = "0.18.0", optional = true }
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.18.0", optional = true }
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.18.0", optional = true }
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.18.0", optional = true }
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.18.0", optional = true }
bevy_post_process_bms_bindings = { path = "../bindings/bevy_post_process_bms_bindings", version = "0.18.0", optional = true }
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.18.0", optional = true }
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.18.0", optional = true }
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.18.0", optional = true }
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.18.0", optional = true }
bevy_sprite_render_bms_bindings = { path = "../bindings/bevy_sprite_render_bms_bindings", version = "0.18.0", optional = true }
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.18.0", optional = true }
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.18.0", optional = true }
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.18.0", optional = true }
bevy_ui_bms_bindings = { path = "../bindings/bevy_ui_bms_bindings", version = "0.18.0", optional = true }
bevy_ui_render_bms_bindings = { path = "../bindings/bevy_ui_render_bms_bindings", version = "0.18.0", optional = true }

[lints]
workspace = true
6 changes: 6 additions & 0 deletions crates/bevy_mod_scripting_script/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.17.0...bevy_mod_scripting_script-v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.16.0...bevy_mod_scripting_script-v0.16.1) - 2025-11-06

### Added
Expand Down
6 changes: 6 additions & 0 deletions crates/bevy_system_reflection/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_system_reflection-v0.17.0...bevy_system_reflection-v0.18.0) - 2026-01-06

### Added

- [**breaking**] Bevy 0.17 ([#498](https://github.com/makspll/bevy_mod_scripting/pull/498))

## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-bevy_system_reflection...v0.3.1-bevy_system_reflection) - 2025-11-06

### Added
Expand Down
6 changes: 6 additions & 0 deletions crates/bindings/bevy_a11y_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_animation_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_asset_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions crates/bindings/bevy_camera_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_color_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_core_pipeline_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_ecs_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_gizmos_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_gltf_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_image_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/bindings/bevy_input_bms_bindings/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading