Skip to content

Commit d7d90b3

Browse files
chore: release v0.9.0-alpha.2
1 parent 976d8c2 commit d7d90b3

File tree

9 files changed

+203
-11
lines changed

9 files changed

+203
-11
lines changed

CHANGELOG.md

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,90 @@
11
# Changelog
22

3+
## [0.9.0-alpha.2](https://github.com/makspll/bevy_mod_scripting/compare/v0.9.0-alpha.1...v0.9.0-alpha.2) - 2025-01-05
4+
5+
### Fixed
6+
7+
- fix test and small refactor
8+
- fix readme
9+
- fix lifetime issue, allow refs
10+
11+
### Other
12+
13+
- Merge remote-tracking branch 'origin' into staging
14+
- improve xtasks and start integrating with ci
15+
- make display without world more sensible
16+
- further clean up
17+
- remove preludes, remove more crates
18+
- remove unused dependencies
19+
- fmt
20+
- more clippy
21+
- clippy fixes
22+
- clippy fixes
23+
- cleanup some imports
24+
- change query signature slightly
25+
- add on load and unload hooks
26+
- improve logs and things
27+
- finally
28+
- keep working on docs and fixing bugs
29+
- make the generics more tenable, and update docs
30+
- start cleaning up examples, use ScriptValue as argument for all things
31+
- add more conversions
32+
- change handle to weak so unloading strong handle is enough to delete script, and update docs
33+
- add error conversions for rhai
34+
- remove trailing whitespace
35+
- clippy fixes
36+
- allow optionally disabling bindings
37+
- pin smol str, begin rhai work
38+
- it doens't exist
39+
- enable bevy input in functions for smol_str
40+
- enable more flags in bevy functions
41+
- make iteration work
42+
- just lookup length for iteration for now
43+
- allow passing more arguments than needed
44+
- implement iterators, and add function passing
45+
- make overloading work for subtraction
46+
- *(codegen)* update bevy bindings (#181)
47+
- add script function registry and update registrations
48+
- implement the rest of reflect reference functions
49+
- remove need for world jerry-rig, use static reference
50+
- get static calls working
51+
- get bindings compiling, add more impls
52+
- *(codegen)* update bevy bindings (#180)
53+
- *(codegen)* update bevy bindings (#179)
54+
- *(codegen)* update bevy bindings (#178)
55+
- select new pre-release version
56+
- clean up versions from last pre-release
57+
- *(codegen)* update bevy bindings (#177)
58+
- imports
59+
- *(codegen)* update bevy bindings (#176)
60+
- *(codegen)* update bevy bindings (#175)
61+
- change imports
62+
- move bindings under different module
63+
- *(codegen)* update bevy bindings (#174)
64+
- *(codegen)* update bevy bindings (#173)
65+
- *(codegen)* update bevy bindings (#172)
66+
- *(codegen)* update bevy bindings (#171)
67+
- *(codegen)* update bevy bindings (#170)
68+
- properly register the top level types too
69+
- work out function type dependency registration basics
70+
- WIP
71+
- re-enable list applies
72+
- handle errors properly
73+
- initial from_script_ref
74+
- shift to bakery paradigm
75+
- remove older stuff
76+
- change core functions to script functions
77+
- refactor accesses slightly
78+
- Big things coming
79+
- WIP
80+
- move script value things into another module
81+
- refactor a bit
82+
- add support for list
83+
- refactor errors considerably
84+
- dynamic get and set calls
85+
- Implement ScriptValue things
86+
- DYNAMIC CALLS WOOOOOOO
87+
388
## [0.8.0-alpha.2](https://github.com/makspll/bevy_mod_scripting/compare/v0.8.0-alpha.1...v0.8.0-alpha.2) - 2024-12-03
489

590
### Fixed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_scripting"
3-
version = "0.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -52,15 +52,15 @@ rune = ["bevy_mod_scripting_rune"]
5252
[dependencies]
5353
bevy = { workspace = true }
5454
bevy_mod_scripting_core = { workspace = true }
55-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.0-alpha.1", optional = true }
56-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.0-alpha.1", optional = true }
57-
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.1", optional = true }
55+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.0-alpha.2", optional = true }
56+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.0-alpha.2", optional = true }
57+
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.2", optional = true }
5858
bevy_mod_scripting_functions = { workspace = true }
5959

6060
[workspace.dependencies]
6161
bevy = { version = "0.15.0", default-features = false }
62-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.0-alpha.1" }
63-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.0-alpha.1" }
62+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.0-alpha.2" }
63+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.0-alpha.2" }
6464
test_utils = { path = "crates/test_utils" }
6565
mlua = { version = "0.10" }
6666
rhai = { version = "1.20.1" }

crates/bevy_mod_scripting_core/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.9.0-alpha.2](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.9.0-alpha.1...bevy_mod_scripting_core-v0.9.0-alpha.2) - 2025-01-05
11+
12+
### Fixed
13+
14+
- fix test and small refactor
15+
16+
### Other
17+
18+
- Merge remote-tracking branch 'origin' into staging
19+
- improve xtasks and start integrating with ci
20+
- make display without world more sensible
21+
- further clean up
22+
- remove preludes, remove more crates
23+
- remove unused dependencies
24+
- fmt
25+
- more clippy
26+
- clippy fixes
27+
- clippy fixes
28+
- cleanup some imports
29+
- change query signature slightly
30+
- add on load and unload hooks
31+
- improve logs and things
32+
- finally
33+
- keep working on docs and fixing bugs
34+
- make the generics more tenable, and update docs
35+
- start cleaning up examples, use ScriptValue as argument for all things
36+
- add more conversions
37+
- change handle to weak so unloading strong handle is enough to delete script, and update docs
38+
- add error conversions for rhai
39+
1040
## [0.8.0-alpha.2](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_core-v0.8.0-alpha.1...bevy_mod_scripting_core-v0.8.0-alpha.2) - 2024-12-03
1141

1242
### Other

crates/bevy_mod_scripting_core/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_core"
3-
version = "0.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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.9.0-alpha.2](https://github.com/makspll/bevy_mod_scripting/compare/bevy_mod_scripting_functions-v0.9.0-alpha.1...bevy_mod_scripting_functions-v0.9.0-alpha.2) - 2025-01-05
11+
12+
### Fixed
13+
14+
- fix readme
15+
- fix lifetime issue, allow refs
16+
17+
### Other
18+
19+
- remove trailing whitespace
20+
- fmt
21+
- clippy fixes
22+
- clippy fixes
23+
- change query signature slightly
24+
- improve logs and things
25+
- finally
26+
- keep working on docs and fixing bugs
27+
- allow optionally disabling bindings
28+
- pin smol str, begin rhai work
29+
- it doens't exist
30+
- enable bevy input in functions for smol_str
31+
- enable more flags in bevy functions
32+
- make iteration work
33+
- just lookup length for iteration for now
34+
- allow passing more arguments than needed
35+
- implement iterators, and add function passing
36+
- make overloading work for subtraction
37+
- *(codegen)* update bevy bindings (#181)
38+
- add script function registry and update registrations
39+
- implement the rest of reflect reference functions
40+
- remove need for world jerry-rig, use static reference
41+
- get static calls working
42+
- get bindings compiling, add more impls
43+
- *(codegen)* update bevy bindings (#180)
44+
- *(codegen)* update bevy bindings (#179)
45+
- *(codegen)* update bevy bindings (#178)
46+
- select new pre-release version
47+
- clean up versions from last pre-release
48+
- *(codegen)* update bevy bindings (#177)
49+
- imports
50+
- *(codegen)* update bevy bindings (#176)
51+
- *(codegen)* update bevy bindings (#175)
52+
- change imports
53+
- move bindings under different module
54+
- *(codegen)* update bevy bindings (#174)
55+
- *(codegen)* update bevy bindings (#173)
56+
- *(codegen)* update bevy bindings (#172)
57+
- *(codegen)* update bevy bindings (#171)
58+
- *(codegen)* update bevy bindings (#170)
59+
- properly register the top level types too
60+
- work out function type dependency registration basics
61+
- WIP
62+
- re-enable list applies
63+
- handle errors properly
64+
- initial from_script_ref
65+
- shift to bakery paradigm
66+
- remove older stuff
67+
- change core functions to script functions
68+
- refactor accesses slightly
69+
- Big things coming
70+
- WIP
71+
- move script value things into another module
72+
- refactor a bit
73+
- add support for list
74+
- refactor errors considerably
75+
- dynamic get and set calls
76+
- Implement ScriptValue things
77+
- DYNAMIC CALLS WOOOOOOO

crates/bevy_mod_scripting_functions/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_functions"
3-
version = "0.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
edition = "2021"
55
authors = ["Maksymilian Mozolewski <[email protected]>"]
66
license = "MIT OR Apache-2.0"

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.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

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.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
authors = ["Maksymilian Mozolewski <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

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.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
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)