diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2024-04-05 12:18:21 +0100 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2024-04-05 12:46:12 +0100 |
commit | 806bd202d64db47898166f00d60762c06a0bc901 (patch) | |
tree | 0fd81fce5f151380b40536ce07b89c6f146e2bd1 | |
parent | a64404908786a829077760092f2ba6477b5a3575 (diff) | |
download | mlua-806bd202d64db47898166f00d60762c06a0bc901.zip |
v0.9.7
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 4 |
3 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index de1b93c..de2d190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.9.7 + +- Implemented `IntoLua` for `RegistryKey` +- Mark `__idiv` metamethod as available for luau +- Added `Function::deep_clone()` method (Luau) +- Added `SerializeOptions::detect_serde_json_arbitrary_precision` option +- Added `Lua::create_buffer()` method (Luau) +- Support serializing buffer type as a byte slice (Luau) +- Perf: Implemented `push_into_stack`/`from_stack` for `Option<T>` +- Added `Lua::create_ser_any_userdata()` method + ## v0.9.6 - Added `to_pointer` function to `Function`/`Table`/`Thread` @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.9.6" # remember to update mlua_derive +version = "0.9.7" # remember to update mlua_derive authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@kyju.org>"] rust-version = "1.71" edition = "2021" @@ -133,7 +133,7 @@ Add to `Cargo.toml` : ``` toml [dependencies] -mlua = { version = "0.9.1", features = ["lua54", "vendored"] } +mlua = { version = "0.9.7", features = ["lua54", "vendored"] } ``` `main.rs` @@ -168,7 +168,7 @@ Add to `Cargo.toml` : crate-type = ["cdylib"] [dependencies] -mlua = { version = "0.9.1", features = ["lua54", "module"] } +mlua = { version = "0.9.7", features = ["lua54", "module"] } ``` `lib.rs` : |