From fa071ffb1c9aa35dbd6cc6ca0a48acaee4c462c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Mar 2025 23:50:07 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 6 ++++++ Cargo.toml | 14 +++++++------- crates/bevy_mod_scripting_core/Cargo.toml | 4 ++-- crates/bevy_mod_scripting_derive/Cargo.toml | 2 +- crates/bevy_mod_scripting_functions/Cargo.toml | 8 ++++---- crates/bevy_system_reflection/CHANGELOG.md | 8 ++++++++ crates/bevy_system_reflection/Cargo.toml | 2 +- crates/ladfile_builder/CHANGELOG.md | 6 ++++++ crates/ladfile_builder/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_lua/Cargo.toml | 2 +- .../languages/bevy_mod_scripting_rhai/Cargo.toml | 2 +- 11 files changed, 38 insertions(+), 18 deletions(-) create mode 100644 crates/bevy_system_reflection/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fbad8e6ff..b6d6aac8dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.11.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.11.0...v0.11.1) - 2025-03-29 + +### Added + +- bump bevy to 0.15.3 ([#401](https://github.com/makspll/bevy_mod_scripting/pull/401)) + ## [0.11.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.10.0...v0.11.0) - 2025-03-29 ### Added diff --git a/Cargo.toml b/Cargo.toml index 3b343a1284..eed07a081d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_scripting" -version = "0.11.0" +version = "0.11.1" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0" @@ -59,8 +59,8 @@ profile_with_tracy = ["bevy/trace_tracy"] [dependencies] bevy = { workspace = true } bevy_mod_scripting_core = { workspace = true } -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.11.0", optional = true } -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.11.0", optional = true } +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.11.1", optional = true } +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.11.1", 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 } @@ -68,9 +68,9 @@ bevy_mod_scripting_derive = { workspace = true } [workspace.dependencies] profiling = { version = "1.0" } bevy = { version = "0.15.3", default-features = false } -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.11.0" } -bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.11.0", default-features = false } -bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.11.0" } +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.11.1" } +bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.11.1", default-features = false } +bevy_mod_scripting_derive = { path = "crates/bevy_mod_scripting_derive", version = "0.11.1" } # test utilities script_integration_test_harness = { path = "crates/testing_crates/script_integration_test_harness" } @@ -84,7 +84,7 @@ bevy_console = "0.13" # rhai-rand = "0.1" criterion = { version = "0.5" } ansi-parser = "0.9" -ladfile_builder = { path = "crates/ladfile_builder", version = "0.3.0" } +ladfile_builder = { path = "crates/ladfile_builder", version = "0.3.1" } script_integration_test_harness = { workspace = true } test_utils = { workspace = true } libtest-mimic = "0.8" diff --git a/crates/bevy_mod_scripting_core/Cargo.toml b/crates/bevy_mod_scripting_core/Cargo.toml index 5dc0e80a3e..807597375f 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.11.0" +version = "0.11.1" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0" @@ -43,7 +43,7 @@ bevy_mod_scripting_derive = { workspace = true } fixedbitset = "0.5" petgraph = "0.6" bevy_mod_debugdump = "0.12" -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.1.0" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.1.1" } [dev-dependencies] test_utils = { workspace = true } diff --git a/crates/bevy_mod_scripting_derive/Cargo.toml b/crates/bevy_mod_scripting_derive/Cargo.toml index 7010ee7a07..58187eede2 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.11.0" +version = "0.11.1" edition = "2021" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/bevy_mod_scripting_functions/Cargo.toml b/crates/bevy_mod_scripting_functions/Cargo.toml index 4bf3d198ef..f1a094af17 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.11.0" +version = "0.11.1" edition = "2021" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" @@ -35,9 +35,9 @@ uuid = "1.11" smol_str = "0.2.2" bevy_mod_scripting_core = { workspace = true } bevy_mod_scripting_derive = { workspace = true } -bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.11.0" } -bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.11.0" } -bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.1.0" } +bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", optional = true, version = "0.11.1" } +bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", optional = true, version = "0.11.1" } +bevy_system_reflection = { path = "../bevy_system_reflection", version = "0.1.1" } [lints] workspace = true diff --git a/crates/bevy_system_reflection/CHANGELOG.md b/crates/bevy_system_reflection/CHANGELOG.md new file mode 100644 index 0000000000..11bddf32c5 --- /dev/null +++ b/crates/bevy_system_reflection/CHANGELOG.md @@ -0,0 +1,8 @@ +# 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] diff --git a/crates/bevy_system_reflection/Cargo.toml b/crates/bevy_system_reflection/Cargo.toml index d14efe3e3a..95921576f8 100644 --- a/crates/bevy_system_reflection/Cargo.toml +++ b/crates/bevy_system_reflection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_system_reflection" -version = "0.1.0" +version = "0.1.1" edition = "2024" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/ladfile_builder/CHANGELOG.md b/crates/ladfile_builder/CHANGELOG.md index 9cf0925e18..b5a5ea76f4 100644 --- a/crates/ladfile_builder/CHANGELOG.md +++ b/crates/ladfile_builder/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/makspll/bevy_mod_scripting/compare/v0.3.0-ladfile_builder...v0.3.1-ladfile_builder) - 2025-03-29 + +### Added + +- bump bevy to 0.15.3 ([#401](https://github.com/makspll/bevy_mod_scripting/pull/401)) + ## [0.3.0](https://github.com/makspll/bevy_mod_scripting/compare/v0.2.6-ladfile_builder...v0.3.0-ladfile_builder) - 2025-03-29 ### Added diff --git a/crates/ladfile_builder/Cargo.toml b/crates/ladfile_builder/Cargo.toml index fba0d9958c..f20bf12448 100644 --- a/crates/ladfile_builder/Cargo.toml +++ b/crates/ladfile_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ladfile_builder" -version = "0.3.0" +version = "0.3.1" edition = "2021" authors = ["Maksymilian Mozolewski "] license = "MIT OR Apache-2.0" diff --git a/crates/languages/bevy_mod_scripting_lua/Cargo.toml b/crates/languages/bevy_mod_scripting_lua/Cargo.toml index ee9cc9c25e..849e7e578b 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.11.0" +version = "0.11.1" 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 85430f3fd2..1dcea22bb6 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.11.0" +version = "0.11.1" authors = ["Maksymilian Mozolewski "] edition = "2021" license = "MIT OR Apache-2.0"