diff --git a/CHANGELOG.md b/CHANGELOG.md index 78dfbf3c..8ad002e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 78bd565d..ad49f56f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", "kyren "] rust-version = "1.79.0" edition = "2021" diff --git a/README.md b/README.md index 1c68d9a8..c05426e3 100644 --- a/README.md +++ b/README.md @@ -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` @@ -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` :