Skip to content

Commit baf8741

Browse files
chore: release
1 parent 1ff54c5 commit baf8741

File tree

7 files changed

+405
-41
lines changed

7 files changed

+405
-41
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.17.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.17.0...v0.17.1) - 2025-11-07
11+
12+
### Added
13+
14+
- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497))
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
100+
10101
## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.16.1) - 2025-11-06
11102

12103
### Added

Cargo.toml

Lines changed: 15 additions & 15 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.17.0"
16+
version = "0.17.1"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
1919
license = "MIT OR Apache-2.0"
@@ -123,20 +123,20 @@ ladfile_builder = { workspace = true, optional = true }
123123
# local crates
124124
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
125125
test_utils = { path = "crates/testing_crates/test_utils" }
126-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.0", default-features = false }
127-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.0" }
128-
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.0", default-features = false }
129-
ladfile = { path = "crates/ladfile", version = "0.17.0" }
130-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.0" }
131-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.0", default-features = false }
132-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.0", default-features = false }
133-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.0", default-features = false }
134-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.0", default-features = false }
135-
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.0", default-features = false }
136-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.0", default-features = false }
137-
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.0", default-features = false }
138-
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.0", default-features = false }
139-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.0" }
126+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.17.1", default-features = false }
127+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.17.1" }
128+
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.17.1", default-features = false }
129+
ladfile = { path = "crates/ladfile", version = "0.17.1" }
130+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.17.1" }
131+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.17.1", default-features = false }
132+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.17.1", default-features = false }
133+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.17.1", default-features = false }
134+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.17.1", default-features = false }
135+
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.17.1", default-features = false }
136+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.17.1", default-features = false }
137+
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.17.1", default-features = false }
138+
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.17.1", default-features = false }
139+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.17.1" }
140140

141141
# bevy
142142

crates/bevy_mod_scripting_bindings_domain/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.17.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings_domain-v0.17.0...bevy_mod_scripting_bindings_domain-v0.17.1) - 2025-11-07
11+
12+
### Added
13+
14+
- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497))
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
100+
10101
## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_bindings_domain-v0.16.0...bevy_mod_scripting_bindings_domain-v0.16.1) - 2025-11-06
11102

12103
### Added

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -48,38 +48,38 @@ 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.17.0" }
52-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.0" }
53-
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.0" }
51+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.17.1" }
52+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.17.1" }
53+
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.17.1" }
5454

5555
bevy_ecs = { workspace = true, features = ["std", "bevy_reflect"] }
5656
bevy_app = { workspace = true }
5757
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.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 }
61+
bevy_a11y_bms_bindings = { path = "../bindings/bevy_a11y_bms_bindings", version = "0.17.1", optional = true }
62+
bevy_animation_bms_bindings = { path = "../bindings/bevy_animation_bms_bindings", version = "0.17.1", optional = true }
63+
bevy_asset_bms_bindings = { path = "../bindings/bevy_asset_bms_bindings", version = "0.17.1", optional = true }
64+
bevy_color_bms_bindings = { path = "../bindings/bevy_color_bms_bindings", version = "0.17.1", optional = true }
65+
bevy_core_pipeline_bms_bindings = { path = "../bindings/bevy_core_pipeline_bms_bindings", version = "0.17.1", optional = true }
66+
bevy_ecs_bms_bindings = { path = "../bindings/bevy_ecs_bms_bindings", version = "0.17.1", optional = true }
67+
bevy_gizmos_bms_bindings = { path = "../bindings/bevy_gizmos_bms_bindings", version = "0.17.1", optional = true }
68+
bevy_gltf_bms_bindings = { path = "../bindings/bevy_gltf_bms_bindings", version = "0.17.1", optional = true }
69+
bevy_image_bms_bindings = { path = "../bindings/bevy_image_bms_bindings", version = "0.17.1", optional = true }
70+
bevy_input_bms_bindings = { path = "../bindings/bevy_input_bms_bindings", version = "0.17.1", optional = true }
71+
bevy_input_focus_bms_bindings = { path = "../bindings/bevy_input_focus_bms_bindings", version = "0.17.1", optional = true }
72+
bevy_math_bms_bindings = { path = "../bindings/bevy_math_bms_bindings", version = "0.17.1", optional = true }
73+
bevy_mesh_bms_bindings = { path = "../bindings/bevy_mesh_bms_bindings", version = "0.17.1", optional = true }
74+
bevy_pbr_bms_bindings = { path = "../bindings/bevy_pbr_bms_bindings", version = "0.17.1", optional = true }
75+
bevy_picking_bms_bindings = { path = "../bindings/bevy_picking_bms_bindings", version = "0.17.1", optional = true }
76+
bevy_reflect_bms_bindings = { path = "../bindings/bevy_reflect_bms_bindings", version = "0.17.1", optional = true }
77+
bevy_render_bms_bindings = { path = "../bindings/bevy_render_bms_bindings", version = "0.17.1", optional = true }
78+
bevy_scene_bms_bindings = { path = "../bindings/bevy_scene_bms_bindings", version = "0.17.1", optional = true }
79+
bevy_sprite_bms_bindings = { path = "../bindings/bevy_sprite_bms_bindings", version = "0.17.1", optional = true }
80+
bevy_text_bms_bindings = { path = "../bindings/bevy_text_bms_bindings", version = "0.17.1", optional = true }
81+
bevy_time_bms_bindings = { path = "../bindings/bevy_time_bms_bindings", version = "0.17.1", optional = true }
82+
bevy_transform_bms_bindings = { path = "../bindings/bevy_transform_bms_bindings", version = "0.17.1", optional = true }
8383

8484
[lints]
8585
workspace = true

0 commit comments

Comments
 (0)