Skip to content

Commit b48cfcc

Browse files
chore: release
1 parent 7e2e970 commit b48cfcc

File tree

9 files changed

+37
-15
lines changed

9 files changed

+37
-15
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.11.2](https://github.com/mgi388/bevy_mod_scripting/compare/v0.11.1...v0.11.2) - 2025-04-04
4+
5+
### Added
6+
7+
- add option to emit response event on each callback & `RunScriptCallback` command for "once-off" callbacks ([#403](https://github.com/mgi388/bevy_mod_scripting/pull/403))
8+
9+
### Other
10+
11+
- refactor `ReflectReference` internally ([#406](https://github.com/mgi388/bevy_mod_scripting/pull/406))
12+
- reduces size of `ScriptValue` to 64 bytes, moves some dynamic function methods into function info ([#404](https://github.com/mgi388/bevy_mod_scripting/pull/404))
13+
314
## [0.11.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.11.0...v0.11.1) - 2025-03-29
415

516
### Added

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -59,18 +59,18 @@ profile_with_tracy = ["bevy/trace_tracy"]
5959
[dependencies]
6060
bevy = { workspace = true }
6161
bevy_mod_scripting_core = { workspace = true }
62-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.11.1", optional = true }
63-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.11.1", optional = true }
62+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.11.2", optional = true }
63+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.11.2", optional = true }
6464
# bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.2", optional = true }
6565
bevy_mod_scripting_functions = { workspace = true }
6666
bevy_mod_scripting_derive = { workspace = true }
6767

6868
[workspace.dependencies]
6969
profiling = { version = "1.0" }
7070
bevy = { version = "0.15.3", default-features = false }
71-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.11.1" }
72-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.11.1", default-features = false }
73-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.11.1" }
71+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.11.2" }
72+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.11.2", default-features = false }
73+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.11.2" }
7474

7575
# test utilities
7676
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
@@ -84,7 +84,7 @@ bevy_console = "0.13"
8484
# rhai-rand = "0.1"
8585
criterion = { version = "0.5" }
8686
ansi-parser = "0.9"
87-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.3.1" }
87+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.3.2" }
8888
script_integration_test_harness = { workspace = true }
8989
test_utils = { workspace = true }
9090
libtest-mimic = "0.8"

crates/bevy_mod_scripting_core/CHANGELOG.md

+11
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.11.2](https://github.com/mgi388/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.11.1...bevy_mod_scripting_core-v0.11.2) - 2025-04-04
11+
12+
### Added
13+
14+
- add option to emit response event on each callback & `RunScriptCallback` command for "once-off" callbacks ([#403](https://github.com/mgi388/bevy_mod_scripting/pull/403))
15+
16+
### Other
17+
18+
- refactor `ReflectReference` internally ([#406](https://github.com/mgi388/bevy_mod_scripting/pull/406))
19+
- reduces size of `ScriptValue` to 64 bytes, moves some dynamic function methods into function info ([#404](https://github.com/mgi388/bevy_mod_scripting/pull/404))
20+
1021
## [0.11.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.10.0...bevy_mod_scripting_core-v0.11.0) - 2025-03-29
1122

1223
### Added

crates/bevy_mod_scripting_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_core"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_derive"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
edition = "2021"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_functions/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_functions"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
edition = "2021"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -35,8 +35,8 @@ uuid = "1.11"
3535
smol_str = "0.2.2"
3636
bevy_mod_scripting_core = { workspace = true }
3737
bevy_mod_scripting_derive = { workspace = true }
38-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.11.1" }
39-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.11.1" }
38+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.11.2" }
39+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.11.2" }
4040
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.1.1" }
4141

4242
[lints]

crates/ladfile_builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ladfile_builder"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/languages/bevy_mod_scripting_lua/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_lua"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/languages/bevy_mod_scripting_rhai/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_rhai"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)