Skip to content

Commit

Permalink
Added changeslist
Browse files Browse the repository at this point in the history
  • Loading branch information
pakozm committed May 6, 2014
1 parent f238479 commit 20092b5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGESLIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 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**:

```Lua
require "mongo"
```

and now **it is**:

```Lua
local mongo = require "mongo"
```

0 comments on commit 20092b5

Please sign in to comment.