diff --git a/CHANGELOG.md b/CHANGELOG.md index 6458ad8..bff2fdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v0.8.5 + +- Fixed potential unsoundness when using `Layout::from_size_align_unchecked` and Rust 1.65+ +- Performance optimizations around string and table creation in standalone mode +- Added fast track path to Table `get`/`set`/`len` methods without metatable +- Added new methods `push`/`pop`/`raw_push`/`raw_pop` to Table +- Fix getting caller information from `Lua::load` +- Better checks and tests when trying to modify a Luau readonly table + ## v0.8.4 - Minimal Luau updated to 0.548 diff --git a/Cargo.toml b/Cargo.toml index fd1c31a..2fc69e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.8.4" # remember to update html_root_url and mlua_derive +version = "0.8.5" # 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 dda668e..d84845b 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.4")] +#![doc(html_root_url = "https://docs.rs/mlua/0.8.5")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]