Skip to content

Commit 6f6cda0

Browse files
committed
v0.10.2
1 parent d51ce86 commit 6f6cda0

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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+
111
## v0.10.1 (Nov 9th, 2024)
212

313
- Minimal Luau updated to 0.650

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua"
3-
version = "0.10.1" # remember to update mlua_derive
3+
version = "0.10.2" # remember to update mlua_derive
44
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@kyju.org>"]
55
rust-version = "1.79.0"
66
edition = "2021"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Add to `Cargo.toml` :
133133

134134
``` toml
135135
[dependencies]
136-
mlua = { version = "0.10.1", features = ["lua54", "vendored"] }
136+
mlua = { version = "0.10.2", features = ["lua54", "vendored"] }
137137
```
138138

139139
`main.rs`
@@ -168,7 +168,7 @@ Add to `Cargo.toml` :
168168
crate-type = ["cdylib"]
169169

170170
[dependencies]
171-
mlua = { version = "0.10.1", features = ["lua54", "module"] }
171+
mlua = { version = "0.10.2", features = ["lua54", "module"] }
172172
```
173173

174174
`lib.rs` :

0 commit comments

Comments
 (0)