This commit is contained in:
Alex Orlenko
2023-08-24 01:41:32 +01:00
parent a802276c56
commit fc159e0c46
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,3 +1,9 @@
## v0.9.1
- impl Default for Lua
- impl IntoLuaMulti for `std::result::Result<(), E>`
- Fix using wrong userdata index after processing Variadic args (#311)
## v0.9.0
Changes since v0.9.0-rc.3
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.9.0" # remember to update mlua_derive
version = "0.9.1" # remember to update mlua_derive
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
rust-version = "1.71"
edition = "2021"
+2 -2
View File
@@ -117,7 +117,7 @@ Add to `Cargo.toml` :
``` toml
[dependencies]
mlua = { version = "0.9.0", features = ["lua54", "vendored"] }
mlua = { version = "0.9.1", features = ["lua54", "vendored"] }
```
`main.rs`
@@ -152,7 +152,7 @@ Add to `Cargo.toml` :
crate-type = ["cdylib"]
[dependencies]
mlua = { version = "0.9.0", features = ["lua54", "module"] }
mlua = { version = "0.9.1", features = ["lua54", "module"] }
```
`lib.rs` :