diff --git a/NEWS b/NEWS index ff27ac4..20d9246 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +0.1.4 - 2018-11-28 + + - Fix bug where nil values are not removed from tables + + 0.1.3 - 2018-10-29 - Fix loading bytecode with empty string constant diff --git a/package.json b/package.json index 961ce11..abad706 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fengari", - "version": "0.1.3", + "version": "0.1.4", "description": "A Lua VM written in JS ES6 targeting the browser", "main": "src/fengari.js", "directories": { diff --git a/src/fengaricore.js b/src/fengaricore.js index ddf5f03..d1531da 100644 --- a/src/fengaricore.js +++ b/src/fengaricore.js @@ -11,7 +11,7 @@ const defs = require("./defs.js"); const FENGARI_VERSION_MAJOR = "0"; const FENGARI_VERSION_MINOR = "1"; const FENGARI_VERSION_NUM = 1; -const FENGARI_VERSION_RELEASE = "3"; +const FENGARI_VERSION_RELEASE = "4"; const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR; const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE; const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator";