From c60a1cbc5f76a147e74135add574a6a5d63eba7b Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 22 Apr 2018 20:34:29 +1000 Subject: Release v0.1.2 --- NEWS | 5 ++++- package.json | 2 +- src/fengaricore.js | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 74fddf3..4ba5e2a 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ -UNRELEASED +0.1.2 - 2018-04-22 - More node 6 compatibility fixes + - Use indirect eval to get reference to global environment + - Move test suite to jest + - Fixes for os.time and os.date normalisation - Use own strftime code (drops strftime npm package dependency) - Fix passing JavaScript strings to luaL_add(l)string diff --git a/package.json b/package.json index ca4c18f..837ede0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fengari", - "version": "0.1.1", + "version": "0.1.2", "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 1335ba8..70466e8 100644 --- a/src/fengaricore.js +++ b/src/fengaricore.js @@ -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 = "1"; +const FENGARI_VERSION_RELEASE = "2"; const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR; const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE; const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator"; -- cgit v1.2.3-54-g00ecf