Skip to content

Commit

Permalink
Release v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Nov 18, 2018
1 parent 0935244 commit 750896c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/fengaricore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 750896c

Please sign in to comment.