Skip to content

Commit

Permalink
Updated dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
emerleite committed Feb 7, 2012
1 parent 47f30b7 commit c2a8311
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Expand Up @@ -3,6 +3,7 @@
* Remove system.indexes during cleanner - Issue #13 (mongodb)
* Invoke callback even if empty collection - Bug #14 and #15 (mongodb)
* Mongodb usage example at examples dir
* Updated mongodb, cradle, mysql and redis pkg versions

0.6.1 / 2011-12-18
==================
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -9,10 +9,10 @@
"url" : "git://github.com/emerleite/node-database-cleaner.git"
},
"dependencies" : {
"mongodb" : "0.9.6-7",
"redis" : ">=0.5.7",
"cradle" : ">=0.5.x",
"mysql" : ">=0.9.2"
"mongodb" : "0.9.8-7",
"redis" : "0.7.1",
"cradle" : "0.5.8",
"mysql" : "0.9.5"
},
"devDependencies" : {
"mocha" : "0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion test/mongodb.test.js
Expand Up @@ -6,7 +6,7 @@ var should = require('should'),
function setUp(callback) {
connect('mongodb://localhost/database_cleaner', function(err, db) {
db.createCollection("database_cleaner_collection", null, function (err, collection) {
collection.insertAll([{a:1}, {b:2}], function() {
collection.insert([{a:1}, {b:2}], function() {
callback(db);
});
});
Expand Down

0 comments on commit c2a8311

Please sign in to comment.