Skip to content

Commit 2beeb64

Browse files
chore: release v0.7.0 (#135)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 22eebba commit 2beeb64

File tree

20 files changed

+170
-22
lines changed

20 files changed

+170
-22
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
3+
## [0.7.0](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting-v0.6.0...bevy_mod_scripting-v0.7.0) - 2024-11-03
4+
5+
### Other
6+
7+
- Add dynamic query examples ([#120](https://github.com/makspll/bevy_mod_scripting/pull/120))
8+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
9+
- Fix Broken Example ([#123](https://github.com/makspll/bevy_mod_scripting/pull/123))
10+
- Fix cross-platform CI.yml ([#111](https://github.com/makspll/bevy_mod_scripting/pull/111))
11+
- update metadata
12+
213
## v0.2.2
314
- Bump `tealr_doc_gen` and `tealr` versions
415
- Change bevy dependency semver to "0.9"

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.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -63,16 +63,16 @@ rune = ["bevy_mod_scripting_rune"]
6363
[dependencies]
6464
bevy = { workspace = true }
6565
bevy_mod_scripting_core = { workspace = true }
66-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.6.0", optional = true }
67-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.6.0", optional = true }
68-
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.6.0", optional = true }
69-
bevy_script_api = { path = "crates/bevy_script_api", version = "0.6.0", optional = true }
66+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.7.0", optional = true }
67+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.7.0", optional = true }
68+
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.7.0", optional = true }
69+
bevy_script_api = { path = "crates/bevy_script_api", version = "0.7.0", optional = true }
7070

7171

7272
[workspace.dependencies]
7373
bevy = { version = "0.14.2", default-features = false }
74-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.6.0" }
75-
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.6.0" }
74+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.7.0" }
75+
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.7.0" }
7676

7777
[dev-dependencies]
7878
bevy = { workspace = true, default-features = true }
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- update metadata

crates/bevy_event_priority/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_event_priority"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- update metadata

crates/bevy_mod_scripting_common/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_common"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Send ScriptErrorEvent when load fails. ([#125](https://github.com/makspll/bevy_mod_scripting/pull/125))
15+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
16+
- update metadata

crates/bevy_mod_scripting_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_core"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -32,7 +32,7 @@ bevy = { workspace = true, default-features = false, features = [
3232
"bevy_text",
3333
"bevy_sprite",
3434
] }
35-
bevy_event_priority = { path = "../bevy_event_priority", version = "0.6.0" }
35+
bevy_event_priority = { path = "../bevy_event_priority", version = "0.7.0" }
3636
thiserror = "1.0.31"
3737
paste = "1.0.7"
3838
parking_lot = "0.12.1"

crates/bevy_script_api/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- Dynamic Queries ([#118](https://github.com/makspll/bevy_mod_scripting/pull/118))
16+
- Make generated wrappers publically accessible ([#114](https://github.com/makspll/bevy_mod_scripting/pull/114))
17+
- update metadata

crates/bevy_script_api/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_script_api"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -35,8 +35,8 @@ parking_lot = "0.12.1"
3535
paste = "1.0.7"
3636
thiserror = "1.0.32"
3737
# lua
38-
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.6.0", optional = true }
39-
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.6.0", optional = true }
40-
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.6.0", optional = true }
38+
bevy_mod_scripting_lua = { path = "../languages/bevy_mod_scripting_lua", version = "0.7.0", optional = true }
39+
bevy_mod_scripting_lua_derive = { path = "../languages/bevy_mod_scripting_lua_derive", version = "0.7.0", optional = true }
40+
bevy_mod_scripting_rhai = { path = "../languages/bevy_mod_scripting_rhai", version = "0.7.0", optional = true }
4141
smol_str = "0.2"
4242
allocator-api2 = "0.2"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- update metadata

crates/languages/bevy_mod_scripting_lua/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_lua"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- Fix cross-platform CI.yml ([#111](https://github.com/makspll/bevy_mod_scripting/pull/111))
16+
- update metadata

crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_lua_derive"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -23,7 +23,7 @@ path = "src/lib.rs"
2323
proc-macro = true
2424

2525
[dependencies]
26-
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.6.0" }
26+
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.7.0" }
2727
paste = "1.0.7"
2828
darling = "0.20"
2929
syn = { version = "2.0.38", features = ["full", "fold", "extra-traits"] }
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- update metadata

crates/languages/bevy_mod_scripting_rhai/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_rhai"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- update metadata

crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting_rhai_derive"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717
proc-macro = true
1818

1919
[dependencies]
20-
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.6.0" }
20+
bevy_mod_scripting_common = { path = "../../bevy_mod_scripting_common", version = "0.7.0" }
2121
paste = "1.0.7"
2222
syn = { version = "1.0.57", features = ["full", "fold", "extra-traits"] }
2323
quote = "1.0.8"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Migrate to bevy 0.14 ([#127](https://github.com/makspll/bevy_mod_scripting/pull/127))
15+
- update metadata

crates/languages/bevy_mod_scripting_rune/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_rune"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Necessary functionality for Rune support with bevy_mod_scripting"

0 commit comments

Comments
 (0)