From 259eb09ae1631b2d28b5c0efca1ff2b8732d6941 Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Mon, 4 Oct 2021 23:29:20 +0100 Subject: [PATCH] v0.6.5 --- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a5fbfd..8644f3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.6.4" # remember to update html_root_url and mlua_derive +version = "0.6.5" # remember to update html_root_url and mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2018" repository = "https://github.com/khvzak/mlua" @@ -13,7 +13,7 @@ links = "lua" build = "build/main.rs" description = """ High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) -with async/await features and support of writing native lua modules in Rust. +with async/await features and support of writing native Lua modules in Rust. """ [package.metadata.docs.rs] diff --git a/src/lib.rs b/src/lib.rs index 4b4c45b..7d54b6d 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.6.4")] +#![doc(html_root_url = "https://docs.rs/mlua/0.6.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))))]