Skip to content

Commit 259eb09

Browse files
committed
v0.6.5
1 parent a544e41 commit 259eb09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua"
3-
version = "0.6.4" # remember to update html_root_url and mlua_derive
3+
version = "0.6.5" # remember to update html_root_url and mlua_derive
44
authors = ["Aleksandr Orlenko <[email protected]>", "kyren <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/khvzak/mlua"
@@ -13,7 +13,7 @@ links = "lua"
1313
build = "build/main.rs"
1414
description = """
1515
High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT)
16-
with async/await features and support of writing native lua modules in Rust.
16+
with async/await features and support of writing native Lua modules in Rust.
1717
"""
1818

1919
[package.metadata.docs.rs]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
//! [`serde::Deserialize`]: https://docs.serde.rs/serde/de/trait.Deserialize.html
7373
7474
// mlua types in rustdoc of other crates get linked to here.
75-
#![doc(html_root_url = "https://docs.rs/mlua/0.6.4")]
75+
#![doc(html_root_url = "https://docs.rs/mlua/0.6.5")]
7676
// Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any*
7777
// warnings at all.
7878
#![doc(test(attr(deny(warnings))))]

0 commit comments

Comments
 (0)