-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
22eebba
commit 2beeb64
Showing
20 changed files
with
170 additions
and
22 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.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -63,16 +63,16 @@ rune = ["bevy_mod_scripting_rune"] | |
[dependencies] | ||
bevy = { workspace = true } | ||
bevy_mod_scripting_core = { workspace = true } | ||
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.6.0", optional = true } | ||
bevy_script_api = { path = "crates/bevy_script_api", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.7.0", optional = true } | ||
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.7.0", optional = true } | ||
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.7.0", optional = true } | ||
bevy_script_api = { path = "crates/bevy_script_api", version = "0.7.0", optional = true } | ||
|
||
|
||
[workspace.dependencies] | ||
bevy = { version = "0.14.2", default-features = false } | ||
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.6.0" } | ||
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.6.0" } | ||
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.7.0" } | ||
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.7.0" } | ||
|
||
[dev-dependencies] | ||
bevy = { workspace = true, default-features = true } | ||
|
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_event_priority-v0.6.0...bevy_event_priority-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- update metadata |
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_event_priority" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_common-v0.6.0...bevy_mod_scripting_common-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- update metadata |
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_common" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
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,16 @@ | ||
# 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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.6.0...bevy_mod_scripting_core-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Send ScriptErrorEvent when load fails. ([#125](https://github.com/makspll/bevy_mod_scripting/pull/125)) | ||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- update metadata |
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.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -32,7 +32,7 @@ bevy = { workspace = true, default-features = false, features = [ | |
"bevy_text", | ||
"bevy_sprite", | ||
] } | ||
bevy_event_priority = { path = "../bevy_event_priority", version = "0.6.0" } | ||
bevy_event_priority = { path = "../bevy_event_priority", version = "0.7.0" } | ||
thiserror = "1.0.31" | ||
paste = "1.0.7" | ||
parking_lot = "0.12.1" | ||
|
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,17 @@ | ||
# 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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_script_api-v0.6.0...bevy_script_api-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- Dynamic Queries ([#118](https://github.com/makspll/bevy_mod_scripting/pull/118)) | ||
- Make generated wrappers publically accessible ([#114](https://github.com/makspll/bevy_mod_scripting/pull/114)) | ||
- update metadata |
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_script_api" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -35,8 +35,8 @@ parking_lot = "0.12.1" | |
paste = "1.0.7" | ||
thiserror = "1.0.32" | ||
# lua | ||
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.6.0", optional = true } | ||
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.7.0", optional = true } | ||
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.7.0", optional = true } | ||
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.7.0", optional = true } | ||
smol_str = "0.2" | ||
allocator-api2 = "0.2" |
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua-v0.6.0...bevy_mod_scripting_lua-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- update metadata |
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.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
16 changes: 16 additions & 0 deletions
16
crates/languages/bevy_mod_scripting_lua_derive/CHANGELOG.md
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,16 @@ | ||
# 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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_lua_derive-v0.6.0...bevy_mod_scripting_lua_derive-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- Fix cross-platform CI.yml ([#111](https://github.com/makspll/bevy_mod_scripting/pull/111)) | ||
- update metadata |
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_derive" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -23,7 +23,7 @@ path = "src/lib.rs" | |
proc-macro = true | ||
|
||
[dependencies] | ||
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.6.0" } | ||
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.7.0" } | ||
paste = "1.0.7" | ||
darling = "0.20" | ||
syn = { version = "2.0.38", features = ["full", "fold", "extra-traits"] } | ||
|
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai-v0.6.0...bevy_mod_scripting_rhai-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- update metadata |
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.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
14 changes: 14 additions & 0 deletions
14
crates/languages/bevy_mod_scripting_rhai_derive/CHANGELOG.md
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rhai_derive-v0.6.0...bevy_mod_scripting_rhai_derive-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- update metadata |
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_derive" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["Maksymilian Mozolewski <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -17,7 +17,7 @@ path = "src/lib.rs" | |
proc-macro = true | ||
|
||
[dependencies] | ||
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.6.0" } | ||
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.7.0" } | ||
paste = "1.0.7" | ||
syn = { version = "1.0.57", features = ["full", "fold", "extra-traits"] } | ||
quote = "1.0.8" | ||
|
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.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_rune-v0.6.0...bevy_mod_scripting_rune-v0.7.0) - 2024-11-03 | ||
|
||
### Other | ||
|
||
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127)) | ||
- update metadata |
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