Skip to content

Commit 174033a

Browse files
chore: release v0.9.0-alpha.2
1 parent c42963a commit 174033a

File tree

11 files changed

+170
-14
lines changed

11 files changed

+170
-14
lines changed

CHANGELOG.md

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

575
### 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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/bevy_mod_scripting_core/CHANGELOG.md

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

1226
### 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: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
- improve logs and things
20+
- finally
21+
- keep working on docs and fixing bugs
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

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"

0 commit comments

Comments
 (0)