Skip to content

Commit 8655ca7

Browse files
chore: release
1 parent 5e0c4f4 commit 8655ca7

File tree

14 files changed

+58
-19
lines changed

14 files changed

+58
-19
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.2](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.1...v0.15.2) - 2025-08-23
11+
12+
### Added
13+
14+
- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462))
15+
16+
### Refactored
17+
18+
- restructure monorepo, rename `bevy_api_gen` to `bevy_mod_scripting_codegen` ([#461](https://github.com/makspll/bevy_mod_scripting/pull/461))
19+
- inline `CallbackBuilder<P>` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456))
20+
- inline `CallbackSettings<P>` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455))
21+
1022
## [0.15.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.15.0...v0.15.1) - 2025-08-18
1123

1224
### Changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2024"
66
license = "MIT OR Apache-2.0"
@@ -74,8 +74,8 @@ bevy = { workspace = true }
7474
bevy_math = { workspace = true }
7575
bevy_reflect = { workspace = true }
7676
bevy_mod_scripting_core = { workspace = true }
77-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.15.1", optional = true }
78-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.15.1", optional = true }
77+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.15.2", optional = true }
78+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.15.2", optional = true }
7979
# bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.2", optional = true }
8080
bevy_mod_scripting_functions = { workspace = true }
8181
bevy_mod_scripting_derive = { workspace = true }
@@ -86,9 +86,9 @@ profiling = { version = "1.0" }
8686
bevy = { version = "0.16.0", default-features = false }
8787
bevy_math = { version = "0.16.0" }
8888
bevy_reflect = { version = "0.16.0" }
89-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.15.1" }
90-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.15.1", default-features = false }
91-
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.15.1" }
89+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.15.2" }
90+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.15.2", default-features = false }
91+
bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.15.2" }
9292

9393
# test utilities
9494
script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" }
@@ -99,7 +99,7 @@ bevy = { workspace = true, default-features = true, features = ["std"] }
9999
clap = { version = "4.1", features = ["derive"] }
100100
rand = "0.9.1"
101101
criterion = { version = "0.5" }
102-
ladfile_builder = { path = "crates/ladfile_builder", version = "0.5.1" }
102+
ladfile_builder = { path = "crates/ladfile_builder", version = "0.5.2" }
103103
script_integration_test_harness = { workspace = true }
104104
test_utils = { workspace = true }
105105
libtest-mimic = "0.8"

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.15.2](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.15.1...bevy_mod_scripting_core-v0.15.2) - 2025-08-23
11+
12+
### Refactored
13+
14+
- inline `CallbackBuilder<P>` into `IntoScriptPluginParams` at compile time ([#456](https://github.com/makspll/bevy_mod_scripting/pull/456))
15+
- inline `CallbackSettings<P>` into `IntoScriptPluginParam` at compile time ([#455](https://github.com/makspll/bevy_mod_scripting/pull/455))
16+
1017
## [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
1118

1219
### Changed

crates/bevy_mod_scripting_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_core"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2024"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_derive"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
edition = "2024"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_functions/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.2](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.15.1...bevy_mod_scripting_functions-v0.15.2) - 2025-08-23
11+
12+
### Added
13+
14+
- pre-expand generated codegen macros ([#462](https://github.com/makspll/bevy_mod_scripting/pull/462))
15+
1016
## [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
1117

1218
### Changed

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_functions"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
edition = "2024"
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.0"
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.15.1" }
39-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.15.1" }
38+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.15.2" }
39+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.15.2" }
4040
bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.2.0" }
4141

4242
[lints]

crates/lad_backends/mdbook_lad_preprocessor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook_lad_preprocessor"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -15,7 +15,7 @@ readme = "readme.md"
1515
[dependencies]
1616
clap = "4"
1717
mdbook = "0.4"
18-
ladfile = { path = "../../ladfile", version = "0.5.0" }
18+
ladfile = { path = "../../ladfile", version = "0.5.1" }
1919
env_logger = "0.11"
2020
log = "0.4"
2121
serde_json = "1.0"

crates/ladfile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ladfile"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2024"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/ladfile_builder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ladfile_builder"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -17,7 +17,7 @@ bevy_mod_scripting_core = { workspace = true }
1717
# I don't think bevy has a top level feature for this :C
1818
bevy = { workspace = true }
1919
bevy_reflect = { version = "0.16.0", features = ["documentation"] }
20-
ladfile = { version = "0.5.0", path = "../ladfile" }
20+
ladfile = { version = "0.5.1", path = "../ladfile" }
2121
regex = "1.11"
2222

2323
[dev-dependencies]

0 commit comments

Comments
 (0)