Skip to content

Commit ddbedee

Browse files
chore: release
1 parent 72388fa commit ddbedee

File tree

41 files changed

+797
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+797
-41
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.16.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.16.0) - 2025-09-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
15+
- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467))
16+
- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462))
17+
18+
### Refactored
19+
20+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))
21+
- extract `bevy_mod_scripting_asset` crate, simplify supported extensions logic ([#475](https://github.com/makspll/bevy_mod_scripting/pull/475))
22+
- remove `HandlerCtxt`, wrap `ScriptContext<P>` in Arc ([#474](https://github.com/makspll/bevy_mod_scripting/pull/474))
23+
- remove `StaticScripts` resource ([#473](https://github.com/makspll/bevy_mod_scripting/pull/473))
24+
- modify `ContextLoadFn` & `ContextReloadFn` & `HandlerFn` to use `WorldId` instead of direct config ([#472](https://github.com/makspll/bevy_mod_scripting/pull/472))
25+
- remove `RuntimeContainer` & `RuntimeSettings`, add plugin runtime to static world local settings ([#471](https://github.com/makspll/bevy_mod_scripting/pull/471))
26+
- add world-local static plugin config, remove `ContextLoadingSettings` resource ([#470](https://github.com/makspll/bevy_mod_scripting/pull/470))
27+
- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463))
28+
- restructure monorepo, rename `bevy_api_gen` to `bevy_mod_scripting_codegen` ([#461](https://github.com/makspll/bevy_mod_scripting/pull/461))
29+
- inline `CallbackBuilder<P>` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456))
30+
- inline `CallbackSettings<P>` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455))
31+
1032
## [0.15.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.0...v0.15.1) - 2025-08-18
1133

1234
### Changed

Cargo.toml

Lines changed: 12 additions & 12 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.15.1"
16+
version = "0.16.0"
1717
edition = "2024"
1818
authors = ["Maksymilian Mozolewski <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
@@ -117,19 +117,19 @@ bevy_mod_scripting_display = { workspace = true }
117117
# local crates
118118
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
119119
test_utils = { path = "crates/testing_crates/test_utils" }
120-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.15.1", default-features = false }
121-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.15.1" }
122-
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.2.0", default-features = false }
123-
ladfile = { path = "crates/ladfile", version = "0.5.0" }
124-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.5.1" }
125-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.15.1", default-features = false }
126-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.15.1", default-features = false }
127-
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.15.1", default-features = false }
128-
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.15.1", default-features = false }
129-
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.15.1", default-features = false }
120+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.16.0", default-features = false }
121+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.16.0" }
122+
bevy_system_reflection = { path = "crates/bevy_system_reflection", version = "0.3.0", default-features = false }
123+
ladfile = { path = "crates/ladfile", version = "0.6.0" }
124+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.6.0" }
125+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.16.0", default-features = false }
126+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.16.0", default-features = false }
127+
bevy_mod_scripting_asset = { path = "crates/bevy_mod_scripting_asset", version = "0.16.0", default-features = false }
128+
bevy_mod_scripting_bindings = { path = "crates/bevy_mod_scripting_bindings", version = "0.16.0", default-features = false }
129+
bevy_mod_scripting_display = { path = "crates/bevy_mod_scripting_display", version = "0.16.0", default-features = false }
130130
# bevy
131131

132-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.15.1" }
132+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.16.0" }
133133
bevy = { version = "0.16.0", default-features = false }
134134
bevy_math = { version = "0.16.0", default-features = false, features = ["std"] }
135135
bevy_transform = { version = "0.16.0", default-features = false }
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.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-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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.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-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
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+
101+
### Refactored
102+
103+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))

crates/bevy_mod_scripting_core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
15+
16+
### Refactored
17+
18+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))
19+
- extract `bevy_mod_scripting_asset` crate, simplify supported extensions logic ([#475](https://github.com/makspll/bevy_mod_scripting/pull/475))
20+
- remove `HandlerCtxt`, wrap `ScriptContext<P>` in Arc ([#474](https://github.com/makspll/bevy_mod_scripting/pull/474))
21+
- remove `StaticScripts` resource ([#473](https://github.com/makspll/bevy_mod_scripting/pull/473))
22+
- modify `ContextLoadFn` & `ContextReloadFn` & `HandlerFn` to use `WorldId` instead of direct config ([#472](https://github.com/makspll/bevy_mod_scripting/pull/472))
23+
- remove `RuntimeContainer` & `RuntimeSettings`, add plugin runtime to static world local settings ([#471](https://github.com/makspll/bevy_mod_scripting/pull/471))
24+
- add world-local static plugin config, remove `ContextLoadingSettings` resource ([#470](https://github.com/makspll/bevy_mod_scripting/pull/470))
25+
- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463))
26+
- inline `CallbackBuilder<P>` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456))
27+
- inline `CallbackSettings<P>` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455))
28+
1029
## [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
1130

1231
### Changed

crates/bevy_mod_scripting_derive/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.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-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
15+
16+
### Refactored
17+
18+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))
19+
- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463))
20+
1021
## [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
1122

1223
### Fixed
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_display-v0.15.1...bevy_mod_scripting_display-v0.16.0) - 2025-09-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
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+
101+
### Refactored
102+
103+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))

crates/bevy_mod_scripting_functions/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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-08
11+
12+
### Added
13+
14+
- improved dynamic printing, adds `ReflectDisplayWithTypeInfo` for overriding opaque type printing ([#478](https://github.com/makspll/bevy_mod_scripting/pull/478))
15+
- improve codegen crate calculation, separate bindings into crates ([#467](https://github.com/makspll/bevy_mod_scripting/pull/467))
16+
- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462))
17+
18+
### Refactored
19+
20+
- extract `bevy_mod_scripting_asset` and `bevy_mod_scripting_display` crates, decouple concerns ([#477](https://github.com/makspll/bevy_mod_scripting/pull/477))
21+
- extract `bevy_mod_scripting_asset` crate, simplify supported extensions logic ([#475](https://github.com/makspll/bevy_mod_scripting/pull/475))
22+
- [**breaking**] refactor dependencies, point at bevy subcrates directly ([#463](https://github.com/makspll/bevy_mod_scripting/pull/463))
23+
1024
## [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
1125

1226
### Changed

0 commit comments

Comments
 (0)