diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/fengaricore.js | 6 |
3 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -UNRELEASED +0.1.0 - 2018-03-31 - Fengari core implements Lua 5.3 in ES6 - Implements the Lua C API diff --git a/package.json b/package.json index 25c60b8..7f645e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fengari", - "version": "0.0.1", + "version": "0.1.0", "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 107d2a2..c34b560 100644 --- a/src/fengaricore.js +++ b/src/fengaricore.js @@ -9,9 +9,9 @@ const defs = require("./defs.js"); const FENGARI_VERSION_MAJOR = "0"; -const FENGARI_VERSION_MINOR = "0"; -const FENGARI_VERSION_NUM = 0; -const FENGARI_VERSION_RELEASE = "1"; +const FENGARI_VERSION_MINOR = "1"; +const FENGARI_VERSION_NUM = 1; +const FENGARI_VERSION_RELEASE = "0"; const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR; const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE; const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator"; |