diff --git a/CHANGELOG.md b/CHANGELOG.md index a0950e02..6458ad8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.8.4 + +- Minimal Luau updated to 0.548 + ## v0.8.3 - Close to-be-closed variables for Lua 5.4 when using call_async functions (#192) diff --git a/Cargo.toml b/Cargo.toml index e0eea235..fd1c31af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.8.3" # remember to update html_root_url and mlua_derive +version = "0.8.4" # 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 db1d0f9e..dda668ee 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.3")] +#![doc(html_root_url = "https://docs.rs/mlua/0.8.4")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]