From 83ed442bf911ae35de649325835a74659b51fb4c Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Tue, 2 Aug 2022 12:43:15 +0100 Subject: [PATCH] v0.8.3 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b6554..a0950e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.8.3 + +- Close to-be-closed variables for Lua 5.4 when using call_async functions (#192) +- Fixed Lua assertion when inspecting another thread stack. (#195) +- Use more reliable way to create LuaJIT VM (which can fail if use Rust allocator on non-x86 platforms) + ## v0.8.2 - Performance optimizations in handling UserData diff --git a/Cargo.toml b/Cargo.toml index 2864297..69dc8ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.8.2" # remember to update html_root_url and mlua_derive +version = "0.8.3" # remember to update html_root_url and mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2021" repository = "https://github.com/khvzak/mlua" diff --git a/src/lib.rs b/src/lib.rs index 06e5ac6..db1d0f9 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.2")] +#![doc(html_root_url = "https://docs.rs/mlua/0.8.3")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]