From fc84e8623ea1edd482cb1358c7b7b5cd60b9b90f Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Sun, 27 Jun 2021 22:42:14 +0100 Subject: [PATCH] v0.6.1 --- 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 9d3399b..2cee6e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.6.1 + +- Update `chunk!` documentation (stable Rust limitations) +- Fixed Lua sequence table conversion to HashSet/BTreeSet +- `once_cell` dependency lowered to 1.0 + ## v0.6.0 Changes since 0.5.4 - New `UserDataFields` API diff --git a/Cargo.toml b/Cargo.toml index 9301cf9..8f98cc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.6.0" # remember to update html_root_url and mlua_derive +version = "0.6.1" # 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 6d01c74..80af7f4 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.0")] +#![doc(html_root_url = "https://docs.rs/mlua/0.6.1")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]