Skip to content

Commit 8692b64

Browse files
chore: release v0.9.0-alpha.2
1 parent f4d2125 commit 8692b64

File tree

11 files changed

+173
-14
lines changed

11 files changed

+173
-14
lines changed

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
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-04
4+
5+
### Fixed
6+
7+
- fix readme
8+
- fix lifetime issue, allow refs
9+
10+
### Other
11+
12+
- change query signature slightly
13+
- add on load and unload hooks
14+
- improve logs and things
15+
- finally
16+
- keep working on docs and fixing bugs
17+
- make the generics more tenable, and update docs
18+
- start cleaning up examples, use ScriptValue as argument for all things
19+
- add more conversions
20+
- change handle to weak so unloading strong handle is enough to delete script, and update docs
21+
- add error conversions for rhai
22+
- allow optionally disabling bindings
23+
- pin smol str, begin rhai work
24+
- it doens't exist
25+
- enable bevy input in functions for smol_str
26+
- enable more flags in bevy functions
27+
- make iteration work
28+
- just lookup length for iteration for now
29+
- allow passing more arguments than needed
30+
- implement iterators, and add function passing
31+
- make overloading work for subtraction
32+
- *(codegen)* update bevy bindings (#181)
33+
- add script function registry and update registrations
34+
- implement the rest of reflect reference functions
35+
- remove need for world jerry-rig, use static reference
36+
- get static calls working
37+
- get bindings compiling, add more impls
38+
- *(codegen)* update bevy bindings (#180)
39+
- *(codegen)* update bevy bindings (#179)
40+
- *(codegen)* update bevy bindings (#178)
41+
- select new pre-release version
42+
- clean up versions from last pre-release
43+
- *(codegen)* update bevy bindings (#177)
44+
- imports
45+
- *(codegen)* update bevy bindings (#176)
46+
- *(codegen)* update bevy bindings (#175)
47+
- change imports
48+
- move bindings under different module
49+
- *(codegen)* update bevy bindings (#174)
50+
- *(codegen)* update bevy bindings (#173)
51+
- *(codegen)* update bevy bindings (#172)
52+
- *(codegen)* update bevy bindings (#171)
53+
- *(codegen)* update bevy bindings (#170)
54+
- properly register the top level types too
55+
- work out function type dependency registration basics
56+
- WIP
57+
- re-enable list applies
58+
- handle errors properly
59+
- initial from_script_ref
60+
- shift to bakery paradigm
61+
- remove older stuff
62+
- change core functions to script functions
63+
- refactor accesses slightly
64+
- Big things coming
65+
- WIP
66+
- move script value things into another module
67+
- refactor a bit
68+
- add support for list
69+
- refactor errors considerably
70+
- dynamic get and set calls
71+
- Implement ScriptValue things
72+
- DYNAMIC CALLS WOOOOOOO
73+
374
## [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
475

576
### Fixed

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.9.0-alpha.1"
3+
version = "0.9.0-alpha.2"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -59,16 +59,16 @@ rune = ["bevy_mod_scripting_rune"]
5959
[dependencies]
6060
bevy = { workspace = true }
6161
bevy_mod_scripting_core = { workspace = true }
62-
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.0-alpha.1", optional = true }
63-
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.0-alpha.1", optional = true }
64-
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.1", optional = true }
62+
bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.9.0-alpha.2", optional = true }
63+
bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.9.0-alpha.2", optional = true }
64+
bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.9.0-alpha.2", optional = true }
6565
bevy_mod_scripting_functions = { workspace = true }
6666

6767
[workspace.dependencies]
6868
bevy = { version = "0.15.0", default-features = false }
69-
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.0-alpha.1" }
70-
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.9.0-alpha.1" }
71-
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.0-alpha.1" }
69+
bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.9.0-alpha.2" }
70+
bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.9.0-alpha.2" }
71+
bevy_mod_scripting_functions = { path = "crates/bevy_mod_scripting_functions", version = "0.9.0-alpha.2" }
7272
test_utils = { path = "crates/test_utils" }
7373
mlua = { version = "0.10" }
7474
rhai = { version = "1.20.1" }

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

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

crates/bevy_mod_scripting_core/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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-04
11+
12+
### Other
13+
14+
- change query signature slightly
15+
- add on load and unload hooks
16+
- improve logs and things
17+
- finally
18+
- keep working on docs and fixing bugs
19+
- make the generics more tenable, and update docs
20+
- start cleaning up examples, use ScriptValue as argument for all things
21+
- add more conversions
22+
- change handle to weak so unloading strong handle is enough to delete script, and update docs
23+
- add error conversions for rhai
24+
1025
## [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
1126

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

0 commit comments

Comments
 (0)