summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2024-04-05 12:18:21 +0100
committerAlex Orlenko <zxteam@protonmail.com>2024-04-05 12:46:12 +0100
commit806bd202d64db47898166f00d60762c06a0bc901 (patch)
tree0fd81fce5f151380b40536ce07b89c6f146e2bd1
parenta64404908786a829077760092f2ba6477b5a3575 (diff)
downloadmlua-806bd202d64db47898166f00d60762c06a0bc901.zip
v0.9.7
-rw-r--r--CHANGELOG.md11
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
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`
diff --git a/Cargo.toml b/Cargo.toml
index c8ddd6d..34d5bc1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/README.md b/README.md
index 3d362d7..563073b 100644
--- a/README.md
+++ b/README.md
@@ -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` :