Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Mar 31, 2018
1 parent 16bbe49 commit cd06f8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
UNRELEASED
0.1.0 - 2018-03-31

- Fengari core implements Lua 5.3 in ES6
- Implements the Lua C API
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.0.1",
"version": "0.1.0",
"description": "A Lua VM written in JS ES6 targeting the browser",
"main": "src/fengari.js",
"directories": {
Expand Down
6 changes: 3 additions & 3 deletions src/fengaricore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit cd06f8d

Please sign in to comment.