diff --git a/CHANGELOG.md b/CHANGELOG.md index fcd5c23..3a4533a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.8.1 + +- Added `Lua::create_proxy` for accessing to UserData static fields and functions without instance +- Added `Table::to_pointer()` and `String::to_pointer()` functions +- Bugfixes and improvements (#176 #179) + ## v0.8.0 Changes since 0.7.4 - Roblox Luau support diff --git a/Cargo.toml b/Cargo.toml index 551bbea..3c72242 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.8.0" # remember to update html_root_url and mlua_derive +version = "0.8.1" # 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 f6eecce..512521c 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.0")] +#![doc(html_root_url = "https://docs.rs/mlua/0.8.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))))]