Update README and CHANGELOG

This commit is contained in:
Alex Orlenko 2023-03-12 23:51:37 +00:00
parent 22fbcfd9fb
commit 3059f82552
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
4 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,15 @@
## v0.8.8
- Fix potential deadlock when trying to reuse dropped registry keys.
- Optimize userdata methods call when __index and fields_getters are nil
## v0.8.7
- Minimum Luau updated to 0.555 (`LUAI_MAXCSTACK` limit increased to 100000)
- `_VERSION` in Luau now includes version number
- Fixed lifetime of `DebugNames` in `Debug::names()` and `DebugSource` in `Debug::source()`
- Fixed subtraction overflow when calculating index for `MultiValue::get()`
## v0.8.6
- Fixed bug when recycled Registry slot can be set to Nil

View File

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.8.6" # remember to update html_root_url and mlua_derive
version = "0.8.8" # 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

@ -17,6 +17,8 @@
[Benchmarks]: https://github.com/khvzak/script-bench-rs
[FAQ]: FAQ.md
> **Note**
>
> Please see the [v0.8](https://github.com/khvzak/mlua/tree/v0.8) branch for the versions of `mlua` released to crates.io.
`mlua` is bindings to [Lua](https://www.lua.org) programming language for Rust with a goal to provide

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