diff --git a/CHANGELOG.md b/CHANGELOG.md index 812be09..315ac1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.9.0-beta.2 + +New features: +- Added `Thread::set_hook()` function to set hook on threads +- Added pretty print to the Debug formatting to Lua `Value` and `Table` +- ffi layer moved to `mlua-sys` crate +- Added OwnedString (unstable) + +Breaking changes: +- Refactor `HookTriggers` (make it const) + ## v0.9.0-beta.1 New features: diff --git a/Cargo.toml b/Cargo.toml index a585fcf..e73ebd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.9.0-beta.1" # remember to update mlua_derive +version = "0.9.0-beta.2" # remember to update mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] edition = "2021" repository = "https://github.com/khvzak/mlua"