From 401c06cfe63fe8b43d1e26eab40ffe2379ad969f Mon Sep 17 00:00:00 2001 From: kyren Date: Sat, 14 Oct 2017 19:27:24 -0400 Subject: [PATCH] Bump cargo version to 0.9.3, update changelog. --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"