This commit is contained in:
Alex Orlenko 2022-07-25 14:23:25 +01:00
parent 4fc69be5f6
commit 185fee956d
No known key found for this signature in database
GPG key ID: 4C150C250863B96D
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## v0.8.2
- Performance optimizations in handling UserData
- Minimal Luau updated to 0.536
- Fixed bug in `Function::bind` when passing empty binds and no arguments (#189)
## v0.8.1
- Added `Lua::create_proxy` for accessing to UserData static fields and functions without instance

View file

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.8.1" # remember to update html_root_url and mlua_derive
version = "0.8.2" # remember to update html_root_url and mlua_derive
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
edition = "2021"
repository = "https://github.com/khvzak/mlua"

View file

@ -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.1")]
#![doc(html_root_url = "https://docs.rs/mlua/0.8.2")]
// Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any*
// warnings at all.
#![doc(test(attr(deny(warnings))))]