-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ccf7ea2
commit 4a52a6c
Showing
11 changed files
with
78 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -53,18 +53,18 @@ 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 } | ||
|
||
[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" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting_core" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting_derive" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
edition = "2021" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting_functions" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
edition = "2021" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting_lua" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_mod_scripting_rhai" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|