This commit is contained in:
Alex Orlenko 2021-06-21 23:19:56 +01:00
parent f24fdfdb80
commit 7feabffc37
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.6.0-beta.3" # remember to update html_root_url and mlua_derive
version = "0.6.0" # 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"
@ -41,7 +41,7 @@ serialize = ["serde", "erased-serde"]
macros = ["mlua_derive/macros"]
[dependencies]
mlua_derive = { version = "=0.6.0-beta.2", optional = true, path = "mlua_derive" }
mlua_derive = { version = "=0.6.0", optional = true, path = "mlua_derive" }
bstr = { version = "0.2", features = ["std"], default_features = false }
once_cell = { version = "1.7" }
num-traits = { version = "0.2.14" }

View File

@ -1,6 +1,6 @@
[package]
name = "mlua_derive"
version = "0.6.0-beta.2"
version = "0.6.0"
authors = ["Aleksandr Orlenko <zxteam@pm.me>"]
edition = "2018"
description = "Procedural macros for the mlua crate."

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