From 0fe898c0ddda8e567ce0506eb518001db9419d84 Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Fri, 4 Jun 2021 12:38:09 +0100 Subject: [PATCH] v0.6.0-beta.3 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bb8b75..157d744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.6.0-beta.3 + +- Errors are always `Send + Sync` to be compatible with anyhow crate +- Implement `UserData` for `Rc`/`Arc`/`Arc` +- Added `__ipairs` metamethod for Lua 5.2 +- Added `String::to_string_lossy` +- Various bugfixes and improvements + ## v0.6.0-beta.2 - [**Breaking**] Removed `AnyUserData::has_metamethod()` diff --git a/Cargo.toml b/Cargo.toml index bb7846b..59f675e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.6.0-beta.2" # remember to update html_root_url and mlua_derive +version = "0.6.0-beta.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 84f7883..9fb5f56 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-beta.2")] +#![doc(html_root_url = "https://docs.rs/mlua/0.6.0-beta.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))))]