diff --git a/CHANGELOG.md b/CHANGELOG.md index 348ce3e..399f2ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.7.1 + +- Fixed traceback generation for errors (#112) +- `Lua::into_static/from_static` methods have been removed from the docs and are discouraged for use + ## v0.7.0 - New "application data" api to store arbitrary objects inside Lua diff --git a/Cargo.toml b/Cargo.toml index 75742b9..ab53005 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.7.0" # remember to update html_root_url and mlua_derive +version = "0.7.1" # remember to update html_root_url and mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2018" repository = "https://github.com/khvzak/mlua" diff --git a/README.md b/README.md index e298e91..7cf1864 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Add to `Cargo.toml` : ``` toml [dependencies] -mlua = { version = "0.6", features = ["lua54", "vendored"] } +mlua = { version = "0.7", features = ["lua54", "vendored"] } ``` `main.rs` @@ -134,7 +134,7 @@ Add to `Cargo.toml` : crate-type = ["cdylib"] [dependencies] -mlua = { version = "0.6", features = ["lua54", "vendored", "module"] } +mlua = { version = "0.7", features = ["lua54", "vendored", "module"] } ``` `lib.rs` : diff --git a/src/lib.rs b/src/lib.rs index 7d7d1c2..e8e638e 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.7.0")] +#![doc(html_root_url = "https://docs.rs/mlua/0.7.1")] // Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any* // warnings at all. #![doc(test(attr(deny(warnings))))]