summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2018-03-31 12:50:15 +1100
committerdaurnimator <quae@daurnimator.com>2018-03-31 12:57:39 +1100
commitcd06f8d388814a1916f2db0814137e519170373c (patch)
tree241986ebc07f8307b67ac9b2583088b2f7117bb8
parent16bbe495d1a0fabfb92ba414e27b1108df3c5b1c (diff)
downloadfengari-0.1.0.tar.gz
fengari-0.1.0.tar.bz2
fengari-0.1.0.zip
Release v0.1.0v0.1.0
-rw-r--r--NEWS2
-rw-r--r--package.json2
-rw-r--r--src/fengaricore.js6
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 8ac32e8..944b2c4 100644
--- a/NEWS
+++ b/NEWS
@@ -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";