Commit 6f6cda0 1 parent d51ce86 commit 6f6cda0 Copy full SHA for 6f6cda0
File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.10.2 (Dec 1st, 2024)
2
+
3
+ - Switch proc-macro-error to proc-macro-error2 (#493 )
4
+ - Do not allow Lua to run GC finalizers on ref thread (#491 )
5
+ - Fix chunks loading in Luau when memory limit is enforced (#488 )
6
+ - Added ` String::wrap ` method to wrap arbitrary ` AsRef<[u8]> ` into ` impl IntoLua `
7
+ - Better FreeBSD/OpenBSD support (thanks to cos)
8
+ - Delay "any" userdata metatable creation until first instance is created (#482 )
9
+ - Reduce amount of generated code for ` UserData ` (less generics)
10
+
1
11
## v0.10.1 (Nov 9th, 2024)
2
12
3
13
- Minimal Luau updated to 0.650
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mlua"
3
- version = " 0.10.1 " # remember to update mlua_derive
3
+ version = " 0.10.2 " # remember to update mlua_derive
4
4
authors = [" Aleksandr Orlenko <zxteam@pm.me>" , " kyren <catherine@kyju.org>" ]
5
5
rust-version = " 1.79.0"
6
6
edition = " 2021"
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ Add to `Cargo.toml` :
133
133
134
134
``` toml
135
135
[dependencies ]
136
- mlua = { version = " 0.10.1 " , features = [" lua54" , " vendored" ] }
136
+ mlua = { version = " 0.10.2 " , features = [" lua54" , " vendored" ] }
137
137
```
138
138
139
139
` main.rs `
@@ -168,7 +168,7 @@ Add to `Cargo.toml` :
168
168
crate-type = [" cdylib" ]
169
169
170
170
[dependencies ]
171
- mlua = { version = " 0.10.1 " , features = [" lua54" , " module" ] }
171
+ mlua = { version = " 0.10.2 " , features = [" lua54" , " module" ] }
172
172
```
173
173
174
174
` lib.rs ` :
You can’t perform that action at this time.
0 commit comments