This commit is contained in:
Alex Orlenko 2021-02-27 19:32:25 +00:00
parent 5f37bf812d
commit b93ace0224
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## v0.5.2
- Some performance optimisations (callbacks)
- `ToLua` implementation for `Cow<str>` and `Cow<CStr>`
- Fixed bug with `Scope` destruction of partially polled futures
## v0.5.1
- Support cross compilation that should work well for vendored builds (including LuaJIT with some restrictions)

View file

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

View file

@ -70,7 +70,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.5.1")]
#![doc(html_root_url = "https://docs.rs/mlua/0.5.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))))]