File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1- UNRELEASED
1+ 0.1.2 - 2018-04-22
22
33 - More node 6 compatibility fixes
4+ - Use indirect eval to get reference to global environment
5+ - Move test suite to jest
6+ - Fixes for os.time and os.date normalisation
47 - Use own strftime code (drops strftime npm package dependency)
58 - Fix passing JavaScript strings to luaL_add(l)string
69
Original file line number Diff line number Diff line change 11{
22 "name" : " fengari" ,
3- "version" : " 0.1.1 " ,
3+ "version" : " 0.1.2 " ,
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 = "1 " ;
14+ const FENGARI_VERSION_RELEASE = "2 " ;
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