diff --git a/Cargo.toml b/Cargo.toml index 2c40a2e..2288b5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", "kyren "] 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" } diff --git a/mlua_derive/Cargo.toml b/mlua_derive/Cargo.toml index 39a8b9a..334c5fa 100644 --- a/mlua_derive/Cargo.toml +++ b/mlua_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua_derive" -version = "0.6.0-beta.2" +version = "0.6.0" authors = ["Aleksandr Orlenko "] edition = "2018" description = "Procedural macros for the mlua crate." diff --git a/src/lib.rs b/src/lib.rs index 9fb5f56..598cf30 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.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))))]