Skip to content

Commit 8ce6e3f

Browse files
chore: release
1 parent be48926 commit 8ce6e3f

File tree

16 files changed

+221
-37
lines changed

16 files changed

+221
-37
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
15+
- add location information to function call context ([#492](https://github.com/makspll/bevy_mod_scripting/pull/492))
16+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
17+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
18+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))
19+
- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486))
20+
1021
## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.16.0) - 2025-09-22
1122

1223
### Added

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories.workspace = true
1313
readme.workspace = true
1414

1515
[workspace.package]
16-
version = "0.16.0"
16+
version = "0.17.0"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
@@ -118,20 +118,20 @@ bevy_mod_scripting_script = { workspace = true }
118118
# local crates
119119
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
120120
test_utils = { path = "crates/testing_crates/test_utils" }
121-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.0", default-features = false }
122-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" }
121+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.0", default-features = false }
122+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.0" }
123123
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.0", default-features = false }
124124
ladfile = { path = "crates/ladfile", version = "0.6.0" }
125-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" }
126-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false }
127-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false }
128-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.0", default-features = false }
129-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.0", default-features = false }
130-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.0", default-features = false }
131-
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.16.0", default-features = false }
125+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.7.0" }
126+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.0", default-features = false }
127+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.0", default-features = false }
128+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.0", default-features = false }
129+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.0", default-features = false }
130+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.0", default-features = false }
131+
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.0", default-features = false }
132132
# bevy
133133

134-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" }
134+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" }
135135
bevy = { version = "0.16.0", default-features = false }
136136
bevy_math = { version = "0.16.0", default-features = false, features = ["std"] }
137137
bevy_transform = { version = "0.16.0", default-features = false }

crates/bevy_mod_scripting_asset/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_asset-v0.16.0...bevy_mod_scripting_asset-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- add location information to function call context ([#492](https://github.com/makspll/bevy_mod_scripting/pull/492))
15+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
16+
1017
## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_asset-v0.15.1...bevy_mod_scripting_asset-v0.16.0) - 2025-09-22
1118

1219
### Added

crates/bevy_mod_scripting_bindings/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.16.0...bevy_mod_scripting_bindings-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
15+
- add location information to function call context ([#492](https://github.com/makspll/bevy_mod_scripting/pull/492))
16+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
17+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
18+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))
19+
- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486))
20+
1021
## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings-v0.15.1...bevy_mod_scripting_bindings-v0.16.0) - 2025-09-22
1122

1223
### Added

crates/bevy_mod_scripting_core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.16.0...bevy_mod_scripting_core-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
15+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
16+
1017
## [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-09-22
1118

1219
### Added

crates/bevy_mod_scripting_derive/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.16.0...bevy_mod_scripting_derive-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
15+
- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486))
16+
1017
## [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-09-22
1118

1219
### Added

crates/bevy_mod_scripting_display/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.16.0...bevy_mod_scripting_display-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
15+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
16+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))

crates/bevy_mod_scripting_functions/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.16.0...bevy_mod_scripting_functions-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
15+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))
16+
1017
## [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-09-22
1118

1219
### Added

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ bevy_mod_scripting_display = { workspace = true }
4848
bevy_mod_scripting_asset = { workspace = true }
4949
bevy_mod_scripting_script = { workspace = true }
5050
bevy_mod_scripting_derive = { workspace = true }
51-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.16.0" }
52-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.16.0" }
51+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.0" }
52+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.0" }
5353
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.3.0" }
5454

5555
bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] }
@@ -58,28 +58,28 @@ bevy_asset = { workspace = true }
5858
bevy_platform = { workspace = true, features = ["std"] }
5959
bevy_reflect = { workspace = true, features = [] }
6060

61-
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.16.0", optional = true }
62-
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.16.0", optional = true }
63-
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.16.0", optional = true }
64-
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.16.0", optional = true }
65-
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.16.0", optional = true }
66-
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.16.0", optional = true }
67-
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.16.0", optional = true }
68-
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.16.0", optional = true }
69-
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.16.0", optional = true }
70-
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.16.0", optional = true }
71-
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.16.0", optional = true }
72-
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.16.0", optional = true }
73-
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.16.0", optional = true }
74-
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.16.0", optional = true }
75-
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.16.0", optional = true }
76-
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.16.0", optional = true }
77-
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.16.0", optional = true }
78-
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.16.0", optional = true }
79-
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.16.0", optional = true }
80-
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.16.0", optional = true }
81-
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.16.0", optional = true }
82-
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.16.0", optional = true }
61+
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.0", optional = true }
62+
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.0", optional = true }
63+
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.0", optional = true }
64+
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.0", optional = true }
65+
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.0", optional = true }
66+
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.0", optional = true }
67+
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.0", optional = true }
68+
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.0", optional = true }
69+
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.0", optional = true }
70+
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.0", optional = true }
71+
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.0", optional = true }
72+
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.0", optional = true }
73+
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.0", optional = true }
74+
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.0", optional = true }
75+
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.0", optional = true }
76+
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.0", optional = true }
77+
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.0", optional = true }
78+
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.0", optional = true }
79+
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.0", optional = true }
80+
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.0", optional = true }
81+
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.0", optional = true }
82+
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.0", optional = true }
8383

8484
[lints]
8585
workspace = true
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.17.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_script-v0.16.0...bevy_mod_scripting_script-v0.17.0) - 2025-10-25
11+
12+
### Added
13+
14+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
15+
- Don't panic! ([#216](https://github.com/makspll/bevy_mod_scripting/pull/216))
16+
- Improvements to BMS in multi-language context ([#194](https://github.com/makspll/bevy_mod_scripting/pull/194))
17+
- complete plugin re-write
18+
19+
### Changed
20+
21+
- changed readme.md
22+
- changed readme.md
23+
- changed readme.md
24+
- changed readme.md
25+
- changed readme.md
26+
- changed readme.md
27+
- changed readme.md
28+
- changed readme.md
29+
- changed readme.md
30+
- changed readme.md
31+
- changed readme.md
32+
- changed readme.md
33+
34+
### Fixed
35+
36+
- bump `bevy` to 0.15.1 ([#241](https://github.com/makspll/bevy_mod_scripting/pull/241))
37+
- Added new version to readme.md ([#164](https://github.com/makspll/bevy_mod_scripting/pull/164))
38+
- fix doctests
39+
- fix link and add changelog entry
40+
- fix tealr versions and add reccomended install command
41+
- fixed doctests
42+
- fixed examples
43+
- fixed examples
44+
- fix doctests
45+
- fixed doctests
46+
47+
### Other
48+
49+
- Bevy 0.15 Support ([#141](https://github.com/makspll/bevy_mod_scripting/pull/141))
50+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
51+
- Fix Broken Example ([#123](https://github.com/makspll/bevy_mod_scripting/pull/123))
52+
- Proxy derive macros, rustc plugin codegen, safety improvements ([#67](https://github.com/makspll/bevy_mod_scripting/pull/67))
53+
- Add lua documentation link to readme.md ([#107](https://github.com/makspll/bevy_mod_scripting/pull/107))
54+
- Update readme.md ([#101](https://github.com/makspll/bevy_mod_scripting/pull/101))
55+
- Bump tealr & mlua versions ([#96](https://github.com/makspll/bevy_mod_scripting/pull/96))
56+
- Add Bevy 0.11 support ([#63](https://github.com/makspll/bevy_mod_scripting/pull/63))
57+
- Add fallback logo image pointing to github ([#58](https://github.com/makspll/bevy_mod_scripting/pull/58))
58+
- Bevy 0.10 support ([#47](https://github.com/makspll/bevy_mod_scripting/pull/47))
59+
- Fix typos in readme.md ([#44](https://github.com/makspll/bevy_mod_scripting/pull/44))
60+
- Update readme.md
61+
- ignore test
62+
- change test
63+
- update readme and release files
64+
- Add Rhai Bevy API ([#40](https://github.com/makspll/bevy_mod_scripting/pull/40))
65+
- Update to 0.9.1 ([#38](https://github.com/makspll/bevy_mod_scripting/pull/38))
66+
- change CI and doctests
67+
- Fix broken example links
68+
- change readme.md
69+
- Change readme.md
70+
- make build sync with hot reloading teal
71+
- update link
72+
- update game_of_life and add video to readme
73+
- game of life example complete
74+
- Add prelude and some more cleanup
75+
- readme links fix
76+
- Merge branch 'main' of https://github.com/makspll/bevy_scripting into add_general_api
77+
- change readme and remove old benches
78+
- rename feature, small fixes, some env config
79+
- Merge branch 'main' of https://github.com/makspll/bevy_scripting into switch_to_mlua_tealr
80+
- change readme.md
81+
- Update readme.md
82+
- Update readme.md
83+
- Merge pull request #8 from makspll/add_event_recipients
84+
- add event recipient functionality
85+
- renamed crate to bevy_mod_scripting
86+
- Update readme.md
87+
- Update readme.md
88+
- Update readme.md
89+
- cleaned up readme.md
90+
- added logo to readme
91+
- typo
92+
- cleaned up readme.md examples
93+
- upgraded rlua callback arg type support
94+
- formatting
95+
- Merge branch 'main' of https://github.com/makspll/bevy_scripting into main
96+
- implemented builder trait for app and changed example
97+
- remove bs in docs
98+
- updated readme.md
99+
- added initial functionality

0 commit comments

Comments
 (0)