summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2024-06-18 11:13:04 +0100
committerAlex Orlenko <zxteam@protonmail.com>2024-06-18 16:09:08 +0100
commitf1ceaf0ff19285f326b84228fc9ccad73e7c968d (patch)
tree6113601b474f676b0bbd2daf7319a6f5efc04ab4
parent884a025b521e4b110a6bd733c65a658c5a9e43d2 (diff)
downloadmlua-f1ceaf0ff19285f326b84228fc9ccad73e7c968d.zip
v0.9.9master
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 236c910..9157495 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## v0.9.9
+
+- Minimal Luau updated to 0.629
+- Fixed bug when attempting to reset or resume already running coroutines (#416).
+- Added `RegistryKey::id()` method to get the underlying Lua registry key id.
+
## v0.9.8
- Fixed serializing same table multiple times (#408)
diff --git a/Cargo.toml b/Cargo.toml
index a2f1c01..5a06552 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mlua"
-version = "0.9.8" # remember to update mlua_derive
+version = "0.9.9" # 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 c9b2376..56a8415 100644
--- a/README.md
+++ b/README.md
@@ -133,7 +133,7 @@ Add to `Cargo.toml` :
``` toml
[dependencies]
-mlua = { version = "0.9.8", features = ["lua54", "vendored"] }
+mlua = { version = "0.9.9", features = ["lua54", "vendored"] }
```
`main.rs`
@@ -168,7 +168,7 @@ Add to `Cargo.toml` :
crate-type = ["cdylib"]
[dependencies]
-mlua = { version = "0.9.8", features = ["lua54", "module"] }
+mlua = { version = "0.9.9", features = ["lua54", "module"] }
```
`lib.rs` :