File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ 0.1.4 - 2018-11-28
2+
3+ - Fix bug where nil values are not removed from tables
4+
5+
160.1.3 - 2018-10-29
27
38 - Fix loading bytecode with empty string constant
Original file line number Diff line number Diff line change 11{
22 "name" : " fengari" ,
3- "version" : " 0.1.3 " ,
3+ "version" : " 0.1.4 " ,
44 "description" : " A Lua VM written in JS ES6 targeting the browser" ,
55 "main" : " src/fengari.js" ,
66 "directories" : {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const defs = require("./defs.js");
1111const FENGARI_VERSION_MAJOR = "0" ;
1212const FENGARI_VERSION_MINOR = "1" ;
1313const FENGARI_VERSION_NUM = 1 ;
14- const FENGARI_VERSION_RELEASE = "3 " ;
14+ const FENGARI_VERSION_RELEASE = "4 " ;
1515const FENGARI_VERSION = "Fengari " + FENGARI_VERSION_MAJOR + "." + FENGARI_VERSION_MINOR ;
1616const FENGARI_RELEASE = FENGARI_VERSION + "." + FENGARI_VERSION_RELEASE ;
1717const FENGARI_AUTHORS = "B. Giannangeli, Daurnimator" ;
You can’t perform that action at this time.
0 commit comments