Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Apr 3, 2018
1 parent 8abd599 commit 8b2d34d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
UNRELEASED
0.1.1 - 2018-04-03

- Fix node 6 compatibility
- Removed duplicate LUA_PATH entries


0.1.0 - 2018-03-31

- Fengari core implements Lua 5.3 in ES6
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.0",
"version": "0.1.1",
"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 = "0";
const FENGARI_VERSION_RELEASE = "1";
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 8b2d34d

Please sign in to comment.