diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e7f40..8c0623a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# Release 0.1.5 +* Fixed CSV constructor without a name + # Release 0.1.4 * Initial documentation * Fixed spec run on Travis diff --git a/released/mongorc.js b/released/mongorc.js index e1b99d8..033bf75 100644 --- a/released/mongorc.js +++ b/released/mongorc.js @@ -9735,7 +9735,7 @@ DBQuery.prototype.printcsv = function() { var CSV = (function(CSV) { - CSV = function(lines) { + CSV = function CSV(lines) { this.lines = lines }