diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2022-10-30 12:31:26 +0000 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2022-10-30 12:31:26 +0000 |
commit | 693a808b6eb0374ebb2fce24604752275d55d402 (patch) | |
tree | 97a47c1ae085db4aaaf80b6723271d9575d5761c | |
parent | a6ca65aa7431b3ce10038600995ca68d98829252 (diff) | |
download | mlua-693a808b6eb0374ebb2fce24604752275d55d402.zip |
v0.8.5
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
3 files changed, 11 insertions, 2 deletions
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 @@ -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 <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"] edition = "2021" repository = "https://github.com/khvzak/mlua" @@ -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))))] |