Skip to content

Commit 750896c

Browse files
committed
Release v0.1.4
1 parent 0935244 commit 750896c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.1.4 - 2018-11-28
2+
3+
- Fix bug where nil values are not removed from tables
4+
5+
16
0.1.3 - 2018-10-29
27

38
- Fix loading bytecode with empty string constant

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fengari",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A Lua VM written in JS ES6 targeting the browser",
55
"main": "src/fengari.js",
66
"directories": {

src/fengaricore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const defs = require("./defs.js");
1111
const FENGARI_VERSION_MAJOR = "0";
1212
const FENGARI_VERSION_MINOR = "1";
1313
const FENGARI_VERSION_NUM = 1;
14-
const FENGARI_VERSION_RELEASE = "3";
14+
const FENGARI_VERSION_RELEASE = "4";
1515
const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR;
1616
const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE;
1717
const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator";

0 commit comments

Comments
 (0)