Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 369 Bytes

CHANGESLIST.md

File metadata and controls

18 lines (13 loc) · 369 Bytes

Master version

Version 0.4-beta

  • Adapted to Lua 5.2: the major change in this version is the compilation with Lua 5.2. Minor changes are needed in old scripts, in order to follow the Lua 5.2 dont-use-global-variables statement. So, the require for the library was:
require "mongo"

and now it is:

local mongo = require "mongo"