summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2022-10-30 12:31:26 +0000
committerAlex Orlenko <zxteam@protonmail.com>2022-10-30 12:31:26 +0000
commit693a808b6eb0374ebb2fce24604752275d55d402 (patch)
tree97a47c1ae085db4aaaf80b6723271d9575d5761c
parenta6ca65aa7431b3ce10038600995ca68d98829252 (diff)
downloadmlua-693a808b6eb0374ebb2fce24604752275d55d402.zip
v0.8.5
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
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
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 <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
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))))]