Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Apr 22, 2018
1 parent 3e31a33 commit c60a1cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -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

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.1",
"version": "0.1.2",
"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 = "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";
Expand Down

0 comments on commit c60a1cb

Please sign in to comment.