This commit is contained in:
Alex Orlenko 2021-06-27 22:42:14 +01:00
parent 8aae9a7c3e
commit fc84e8623e
No known key found for this signature in database
GPG key ID: 4C150C250863B96D
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## v0.6.1
- Update `chunk!` documentation (stable Rust limitations)
- Fixed Lua sequence table conversion to HashSet/BTreeSet
- `once_cell` dependency lowered to 1.0
## v0.6.0
Changes since 0.5.4
- New `UserDataFields` API

View file

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.6.0" # remember to update html_root_url and mlua_derive
version = "0.6.1" # 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"

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")]
#![doc(html_root_url = "https://docs.rs/mlua/0.6.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))))]