v0.8.0-beta.2

This commit is contained in:
Alex Orlenko 2022-03-25 00:27:07 +00:00
parent ec1fa04085
commit de1cfa070f
No known key found for this signature in database
GPG key ID: 4C150C250863B96D
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
## v0.8.0-beta.2
- Luau vector datatype support
- Luau readonly table attribute
- Other Luau improvements
## v0.8.0-beta.1
- Roblox Luau support

View file

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.8.0-beta.1" # remember to update html_root_url and mlua_derive
version = "0.8.0-beta.2" # remember to update html_root_url and mlua_derive
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
edition = "2018"
repository = "https://github.com/khvzak/mlua"

View file

@ -104,7 +104,7 @@ Add to `Cargo.toml` :
``` toml
[dependencies]
mlua = { version = "0.8.0-beta.1", features = ["lua54", "vendored"] }
mlua = { version = "0.8.0-beta.2", features = ["lua54", "vendored"] }
```
`main.rs`
@ -139,7 +139,7 @@ Add to `Cargo.toml` :
crate-type = ["cdylib"]
[dependencies]
mlua = { version = "0.8.0-beta.1", features = ["lua54", "vendored", "module"] }
mlua = { version = "0.8.0-beta.2", features = ["lua54", "vendored", "module"] }
```
`lib.rs` :