diff --git a/CHANGELOG.md b/CHANGELOG.md index 975eee0..2ba76c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.5.3 + +- Fixed bug when returning nil-prefixed multi values from async function (+ test) +- Performance optimisation for async callbacks (polling) + ## v0.5.2 - Some performance optimisations (callbacks) diff --git a/Cargo.toml b/Cargo.toml index 81858f5..d9586ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.5.2" # remember to update html_root_url and mlua_derive +version = "0.5.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 c1e7ecc..1fcbf3c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -70,7 +70,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.5.2")] +#![doc(html_root_url = "https://docs.rs/mlua/0.5.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))))]