File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.9.9
2
+
3
+ - Minimal Luau updated to 0.629
4
+ - Fixed bug when attempting to reset of resume already running coroutines (#416 ).
5
+ - Added ` RegistryKey::id() ` method to get the underlying Lua registry key id.
6
+
1
7
## v0.9.8
2
8
3
9
- Fixed serializing same table multiple times (#408 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mlua"
3
- version = " 0.9.8 " # remember to update mlua_derive
3
+ version = " 0.9.9 " # 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.8 " , features = [" lua54" , " vendored" ] }
136
+ mlua = { version = " 0.9.9 " , 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.8 " , features = [" lua54" , " module" ] }
171
+ mlua = { version = " 0.9.9 " , features = [" lua54" , " module" ] }
172
172
```
173
173
174
174
` lib.rs ` :
You can’t perform that action at this time.
0 commit comments