Skip to content

Commit

Permalink
v0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
khvzak committed Jun 18, 2024
1 parent 884a025 commit f1ceaf0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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` :
Expand Down

0 comments on commit f1ceaf0

Please sign in to comment.