Skip to content

Commit

Permalink
v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
khvzak committed Dec 1, 2024
1 parent d51ce86 commit 6f6cda0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.10.2 (Dec 1st, 2024)

- Switch proc-macro-error to proc-macro-error2 (#493)
- Do not allow Lua to run GC finalizers on ref thread (#491)
- Fix chunks loading in Luau when memory limit is enforced (#488)
- Added `String::wrap` method to wrap arbitrary `AsRef<[u8]>` into `impl IntoLua`
- Better FreeBSD/OpenBSD support (thanks to cos)
- Delay "any" userdata metatable creation until first instance is created (#482)
- Reduce amount of generated code for `UserData` (less generics)

## v0.10.1 (Nov 9th, 2024)

- Minimal Luau updated to 0.650
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.10.1" # remember to update mlua_derive
version = "0.10.2" # remember to update mlua_derive
authors = ["Aleksandr Orlenko <[email protected]>", "kyren <[email protected]>"]
rust-version = "1.79.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Add to `Cargo.toml` :

``` toml
[dependencies]
mlua = { version = "0.10.1", features = ["lua54", "vendored"] }
mlua = { version = "0.10.2", features = ["lua54", "vendored"] }
```

`main.rs`
Expand Down Expand Up @@ -168,7 +168,7 @@ Add to `Cargo.toml` :
crate-type = ["cdylib"]

[dependencies]
mlua = { version = "0.10.1", features = ["lua54", "module"] }
mlua = { version = "0.10.2", features = ["lua54", "module"] }
```

`lib.rs` :
Expand Down

0 comments on commit 6f6cda0

Please sign in to comment.