summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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` :