Skip to content

Commit ca5d5ce

Browse files
chore: release (#483)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0a9a37d commit ca5d5ce

File tree

23 files changed

+448
-45
lines changed

23 files changed

+448
-45
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.16.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.16.0...v0.16.1) - 2025-11-06
11+
12+
### Added
13+
14+
- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497))
15+
- add `ScriptPipelineState` system parameter and rust script loading example ([#494](https://github.com/makspll/bevy_mod_scripting/pull/494))
16+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
17+
- add location information to function call context ([#492](https://github.com/makspll/bevy_mod_scripting/pull/492))
18+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
19+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
20+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))
21+
- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486))
22+
1023
## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.16.0) - 2025-09-22
1124

1225
### 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.16.0"
16+
version = "0.16.1"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
1919
license = "MIT OR Apache-2.0"
@@ -123,23 +123,23 @@ 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.16.0", default-features = false }
127-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" }
128-
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.0", default-features = false }
129-
ladfile = { path = "crates/ladfile", version = "0.6.0" }
130-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" }
131-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false }
132-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false }
133-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.0", default-features = false }
134-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.0", default-features = false }
135-
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.16.0", default-features = false }
136-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.0", default-features = false }
137-
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.16.0", default-features = false }
138-
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.16.0", default-features = false }
126+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.1", default-features = false }
127+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.1" }
128+
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.1", default-features = false }
129+
ladfile = { path = "crates/ladfile", version = "0.6.1" }
130+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.1" }
131+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.1", default-features = false }
132+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.1", default-features = false }
133+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.1", default-features = false }
134+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.1", default-features = false }
135+
bevy_mod_scripting_bindings_domain = { path = "crates/bevy_mod_scripting_bindings_domain", version = "0.16.1", default-features = false }
136+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.1", default-features = false }
137+
bevy_mod_scripting_script = { path = "crates/bevy_mod_scripting_script", version = "0.16.1", default-features = false }
138+
lua_language_server_lad_backend = { path = "crates/lad_backends/lua_language_server_lad_backend", version = "0.16.1", default-features = false }
139139

140140
# bevy
141141

142-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" }
142+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.1" }
143143
bevy = { version = "0.16.0", default-features = false }
144144
bevy_math = { version = "0.16.0", default-features = false, features = ["std"] }
145145
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.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_asset-v0.16.0...bevy_mod_scripting_asset-v0.16.1) - 2025-11-06
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497))
15+
- add `ScriptPipelineState` system parameter and rust script loading example ([#494](https://github.com/makspll/bevy_mod_scripting/pull/494))
16+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
17+
- add location information to function call context ([#492](https://github.com/makspll/bevy_mod_scripting/pull/492))
18+
- Replace `ParsedPath` with custom `ReferencePath`, support `Map` and `Set` references with arbitrary types ([#491](https://github.com/makspll/bevy_mod_scripting/pull/491))
19+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
20+
- Asset references, `world.get_asset` and `world.has_asset` bindings ([#484](https://github.com/makspll/bevy_mod_scripting/pull/484))
21+
- warn on duplicate globals ([#486](https://github.com/makspll/bevy_mod_scripting/pull/486))
22+
1023
## [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
1124

1225
### Added
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.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
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

crates/bevy_mod_scripting_core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- Lua definition file generation, ladfile re-work ([#497](https://github.com/makspll/bevy_mod_scripting/pull/497))
15+
- add `ScriptPipelineState` system parameter and rust script loading example ([#494](https://github.com/makspll/bevy_mod_scripting/pull/494))
16+
- add script asset path to function call context ([#493](https://github.com/makspll/bevy_mod_scripting/pull/493))
17+
- registered callbacks via `register_callback`, and `bevy_mod_scripting_script` crate. ([#490](https://github.com/makspll/bevy_mod_scripting/pull/490))
18+
1019
## [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
1120

1221
### 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.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.16.0...bevy_mod_scripting_derive-v0.16.1) - 2025-11-06
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.16.1](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.16.0...bevy_mod_scripting_display-v0.16.1) - 2025-11-06
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.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
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

0 commit comments

Comments
 (0)