Skip to content

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Oct 29, 2018
1 parent ccad087 commit 4ec203c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.3 - 2018-10-29

- Fix loading bytecode with empty string constant
- Fix missing luaopen_base export
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.2",
"version": "0.1.3",
"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 = "2";
const FENGARI_VERSION_RELEASE = "3";
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 4ec203c

Please sign in to comment.