diff --git a/CHANGELOG.md b/CHANGELOG.md index a592438..b4d1eed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.9.2] +- Soundness fix for recursive function calls, now causes a panic. + This is temporary while I work on a more major update that + prevents panics / aborts from scripts. + ## [0.9.2] - Bugfix, don't load the "base" library into the "base" global variable @jonas-schievink diff --git a/Cargo.toml b/Cargo.toml index 0d9ebc0..c954868 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rlua" -version = "0.9.2" +version = "0.9.3" authors = ["kyren "] description = "High level bindings to Lua 5.3" repository = "https://github.com/chucklefish/rlua"