diff --git a/CHANGELOG.md b/CHANGELOG.md index d397d23a72..893c3ef21c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.9.4](https://github.com/makspll/bevy_mod_scripting/compare/v0.9.3...v0.9.4) - 2025-02-12 + +### Added + +- create `Language Agnostic Declaration` file format and `ladfile` crate (#274) +- Add `script_bindings` impl block derive macro (#263) +- add `TypedThrough` abstraction to function meta, and refactor (#272) +- refactor generated bindings to use new derive macro (#268) +- refactor core bindings to use new derive macro (#267) + +### Fixed + +- fix tracy compile errors and add tracy buid to CI (#277) +- don't use `new_unregistered` for most of core bindings macros (#270) + ## [0.9.3](https://github.com/makspll/bevy_mod_scripting/compare/v0.9.2...v0.9.3) - 2025-02-08 ### Added diff --git a/Cargo.toml b/Cargo.toml index 54557c47da..edd31d709a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting" -version = "0.9.3" +version = "0.9.4" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0" @@ -53,8 +53,8 @@ rhai = ["bevy_mod_scripting_rhai"] [dependencies] bevy = { workspace = true } bevy_mod_scripting_core = { workspace = true } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.3", optional = true } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.3", optional = true } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.4", optional = true } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.4", optional = true } # bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.2", optional = true } bevy_mod_scripting_functions = { workspace = true } bevy_mod_scripting_derive = { workspace = true } @@ -62,9 +62,9 @@ bevy_mod_scripting_derive = { workspace = true } [workspace.dependencies] profiling = { version = "1.0" } bevy = { version = "0.15.1", default-features = false } -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.3" } -bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.3", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.9.3" } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.4" } +bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.4", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.9.4" } # test utilities script_integration_test_harness = { path = "crates/script_integration_test_harness" } diff --git a/crates/bevy_mod_scripting_core/CHANGELOG.md b/crates/bevy_mod_scripting_core/CHANGELOG.md index 63741e7f92..b3c0bedc4d 100644 --- a/crates/bevy_mod_scripting_core/CHANGELOG.md +++ b/crates/bevy_mod_scripting_core/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.4](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.9.3...bevy_mod_scripting_core-v0.9.4) - 2025-02-12 + +### Added + +- create `Language Agnostic Declaration` file format and `ladfile` crate (#274) +- add `TypedThrough` abstraction to function meta, and refactor (#272) +- Add `script_bindings` impl block derive macro (#263) + +### Fixed + +- fix tracy compile errors and add tracy buid to CI (#277) + ## [0.9.3](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.9.2...bevy_mod_scripting_core-v0.9.3) - 2025-02-08 ### Added diff --git a/crates/bevy_mod_scripting_core/Cargo.toml b/crates/bevy_mod_scripting_core/Cargo.toml index d1b5c250f1..485378d41b 100644 --- a/crates/bevy_mod_scripting_core/Cargo.toml +++ b/crates/bevy_mod_scripting_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_core" -version = "0.9.3" +version = "0.9.4" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/bevy_mod_scripting_derive/CHANGELOG.md b/crates/bevy_mod_scripting_derive/CHANGELOG.md new file mode 100644 index 0000000000..b2978df97e --- /dev/null +++ b/crates/bevy_mod_scripting_derive/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.9.4](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_derive-v0.9.3...bevy_mod_scripting_derive-v0.9.4) - 2025-02-12 + +### Added + +- refactor generated bindings to use new derive macro (#268) +- refactor core bindings to use new derive macro (#267) diff --git a/crates/bevy_mod_scripting_derive/Cargo.toml b/crates/bevy_mod_scripting_derive/Cargo.toml index 731d8f625e..8d3a6745ac 100644 --- a/crates/bevy_mod_scripting_derive/Cargo.toml +++ b/crates/bevy_mod_scripting_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_derive" -version = "0.9.3" +version = "0.9.4" edition = "2021" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/bevy_mod_scripting_functions/CHANGELOG.md b/crates/bevy_mod_scripting_functions/CHANGELOG.md index f02620b43d..daaec830a5 100644 --- a/crates/bevy_mod_scripting_functions/CHANGELOG.md +++ b/crates/bevy_mod_scripting_functions/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.4](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.9.3...bevy_mod_scripting_functions-v0.9.4) - 2025-02-12 + +### Added + +- refactor generated bindings to use new derive macro (#268) +- refactor core bindings to use new derive macro (#267) + +### Fixed + +- don't use `new_unregistered` for most of core bindings macros (#270) + ## [0.9.0-alpha.8](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.9.0-alpha.7...bevy_mod_scripting_functions-v0.9.0-alpha.8) - 2025-01-27 ### Added diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index 5b50abcb0c..0ded4a2bdd 100644 --- a/crates/bevy_mod_scripting_functions/Cargo.toml +++ b/crates/bevy_mod_scripting_functions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_functions" -version = "0.9.3" +version = "0.9.4" edition = "2021" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/ladfile/CHANGELOG.md b/crates/ladfile/CHANGELOG.md new file mode 100644 index 0000000000..25016e5cf7 --- /dev/null +++ b/crates/ladfile/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/makspll/bevy_mod_scripting/releases/tag/v0.1.0-ladfile) - 2025-02-12 + +### Added + +- create `Language Agnostic Declaration` file format and `ladfile` crate (#274) diff --git a/crates/languages/bevy_mod_scripting_lua/Cargo.toml b/crates/languages/bevy_mod_scripting_lua/Cargo.toml index b8543d7c23..d5926fa1e9 100644 --- a/crates/languages/bevy_mod_scripting_lua/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_lua/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_lua" -version = "0.9.3" +version = "0.9.4" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml index 53f4d96d4a..3b58b63a06 100644 --- a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting_rhai" -version = "0.9.3" +version = "0.9.4" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0"