From 4f06f614a98b2fcbcac325a90837af7c2f5f5201 Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Wed, 25 May 2022 01:15:20 +0100 Subject: [PATCH] v0.8.0-beta.5 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a697c..2eb3817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.8.0-beta.5 + +- Lua sources no longer needed to build modules +- Added `__iter` metamethod for Luau +- Added `Value::to_pointer()` function +- Added `Function::coverage` for Luau to obtain coverage report +- Bugfixes and improvements (#153 #161 #168) + ## v0.8.0-beta.4 - Removed `&Lua` from `Lua::set_interrupt` as it's not safe (introduced in v0.8.0-beta.3) diff --git a/Cargo.toml b/Cargo.toml index fb8a957..f4db4df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.8.0-beta.4" # remember to update html_root_url and mlua_derive +version = "0.8.0-beta.5" # remember to update html_root_url and mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2018" repository = "https://github.com/khvzak/mlua" diff --git a/README.md b/README.md index 35ad992..56a0acd 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Add to `Cargo.toml` : ``` toml [dependencies] -mlua = { version = "0.8.0-beta.4", features = ["lua54", "vendored"] } +mlua = { version = "0.8.0-beta.5", features = ["lua54", "vendored"] } ``` `main.rs` @@ -141,7 +141,7 @@ Add to `Cargo.toml` : crate-type = ["cdylib"] [dependencies] -mlua = { version = "0.8.0-beta.4", features = ["lua54", "vendored", "module"] } +mlua = { version = "0.8.0-beta.5", features = ["lua54", "vendored", "module"] } ``` `lib.rs` : diff --git a/src/lib.rs b/src/lib.rs index 39ad130..4efd2c8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -72,7 +72,7 @@ //! [`serde::Deserialize`]: https://docs.serde.rs/serde/de/trait.Deserialize.html // mlua types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/mlua/0.8.0-beta.4")] +#![doc(html_root_url = "https://docs.rs/mlua/0.8.0-beta.5")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]