From 35eedd5a5ecacb78fd074b040a57949cfaaabb6e Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Thu, 16 Sep 2021 00:55:49 +0100 Subject: [PATCH] v0.6.3 --- CHANGELOG.md | 1 + Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acc72c0..ddec28d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Added `Debug::event()` to the hook's Debug structure - Simplified interface of `hook::HookTriggers` - Added finalizer to `ExtraData` in module mode. This helps avoiding memory leak on closing state when Lua unloads modules and frees memory. +- Added `DeserializeOptions` struct to control deserializer behavior (`from_value_with` function). ## v0.6.2 diff --git a/Cargo.toml b/Cargo.toml index c01d16c..c78b52e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.6.2" # remember to update html_root_url and mlua_derive +version = "0.6.3" # remember to update html_root_url and mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2018" repository = "https://github.com/khvzak/mlua" diff --git a/src/lib.rs b/src/lib.rs index 0dddf05..9111992 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.6.2")] +#![doc(html_root_url = "https://docs.rs/mlua/0.6.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))))]