Skip to content

Commit

Permalink
v0.9.0-rc.3
Browse files Browse the repository at this point in the history
  • Loading branch information
khvzak committed Jul 28, 2023
1 parent bec40ee commit 1f1463c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.9.0-rc.3

- Minimal Luau updated to 0.588

## v0.9.0-rc.2

- Added `#[derive(FromLua)]` macro to opt-in into `FromLua<T> where T: 'static + Clone` (userdata type).
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.0-rc.2" # remember to update mlua_derive
version = "0.9.0-rc.3" # remember to update mlua_derive
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.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 @@ -119,7 +119,7 @@ Add to `Cargo.toml` :

``` toml
[dependencies]
mlua = { version = "0.9.0-rc.2", features = ["lua54", "vendored"] }
mlua = { version = "0.9.0-rc.3", features = ["lua54", "vendored"] }
```

`main.rs`
Expand Down Expand Up @@ -154,7 +154,7 @@ Add to `Cargo.toml` :
crate-type = ["cdylib"]

[dependencies]
mlua = { version = "0.9.0-rc.2", features = ["lua54", "vendored", "module"] }
mlua = { version = "0.9.0-rc.3", features = ["lua54", "vendored", "module"] }
```

`lib.rs` :
Expand Down

0 comments on commit 1f1463c

Please sign in to comment.