Skip to content

Commit cb1ac28

Browse files
committed
v0.5.4
1 parent 3e7f256 commit cb1ac28

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.5.4
2+
3+
- Build script improvements
4+
- Improvements in panic handling (resume panic on value popping)
5+
- Fixed bug serializing 3rd party userdata (causes segfault)
6+
- Make error::Error non exhaustive
7+
18
## v0.5.3
29

310
- Fixed bug when returning nil-prefixed multi values from async function (+ test)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua"
3-
version = "0.5.3" # remember to update html_root_url and mlua_derive
3+
version = "0.5.4" # 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"

src/lib.rs

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

0 commit comments

Comments
 (0)