Skip to content

Commit cd06f8d

Browse files
committed
Release v0.1.0
1 parent 16bbe49 commit cd06f8d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
UNRELEASED
1+
0.1.0 - 2018-03-31
22

33
- Fengari core implements Lua 5.3 in ES6
44
- Implements the Lua C API

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fengari",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "A Lua VM written in JS ES6 targeting the browser",
55
"main": "src/fengari.js",
66
"directories": {

src/fengaricore.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
const defs = require("./defs.js");
1010

1111
const FENGARI_VERSION_MAJOR = "0";
12-
const FENGARI_VERSION_MINOR = "0";
13-
const FENGARI_VERSION_NUM = 0;
14-
const FENGARI_VERSION_RELEASE = "1";
12+
const FENGARI_VERSION_MINOR = "1";
13+
const FENGARI_VERSION_NUM = 1;
14+
const FENGARI_VERSION_RELEASE = "0";
1515
const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR;
1616
const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE;
1717
const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator";

0 commit comments

Comments
 (0)