File tree 3 files changed +14
-3
lines changed 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.9.7
2
+
3
+ - Implemented ` IntoLua ` for ` RegistryKey `
4
+ - Mark ` __idiv ` metamethod as available for luau
5
+ - Added ` Function::deep_clone() ` method (Luau)
6
+ - Added ` SerializeOptions::detect_serde_json_arbitrary_precision ` option
7
+ - Added ` Lua::create_buffer() ` method (Luau)
8
+ - Support serializing buffer type as a byte slice (Luau)
9
+ - Perf: Implemented ` push_into_stack ` /` from_stack ` for ` Option<T> `
10
+ - Added ` Lua::create_ser_any_userdata() ` method
11
+
1
12
## v0.9.6
2
13
3
14
- Added ` to_pointer ` function to ` Function ` /` Table ` /` Thread `
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mlua"
3
- version = " 0.9.6 " # remember to update mlua_derive
3
+ version = " 0.9.7 " # remember to update mlua_derive
4
4
authors = [" Aleksandr Orlenko <zxteam@pm.me>" , " kyren <catherine@kyju.org>" ]
5
5
rust-version = " 1.71"
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.9.1 " , features = [" lua54" , " vendored" ] }
136
+ mlua = { version = " 0.9.7 " , 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.9.1 " , features = [" lua54" , " module" ] }
171
+ mlua = { version = " 0.9.7 " , features = [" lua54" , " module" ] }
172
172
```
173
173
174
174
` lib.rs ` :
You can’t perform that action at this time.
0 commit comments