Skip to content

Commit

Permalink
Merge pull request #174 from tomvantilburg/master
Browse files Browse the repository at this point in the history
merge from Tom
  • Loading branch information
tomvantilburg committed Mar 18, 2015
2 parents e7b00df + 6e65ae0 commit 1427a51
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2820,7 +2820,7 @@ Cow.core = function(config){
if (typeof(config) == 'undefined' ) {
config = {};
}
this._version = '2.0.2-beta1';
this._version = '2.0.2';
this._herdname = config.herdname || 'cow';
this._userid = null;
this._socketserverid = null;
Expand Down
2 changes: 1 addition & 1 deletion dist/cow.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cow.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ Cow.localdb.prototype.writeAll = function(config){
});
promisearray.push(subpromise);
}
var promise = new Promise.all(promisearray);
var promise = Promise.all(promisearray);
return promise;
};

Expand Down Expand Up @@ -2752,7 +2752,7 @@ Cow.core = function(config){
if (typeof(config) == 'undefined' ) {
config = {};
}
this._version = '2.0.2-beta1';
this._version = '2.0.2';
this._herdname = config.herdname || 'cow';
this._userid = null;
this._socketserverid = null;
Expand Down
4 changes: 2 additions & 2 deletions dist/cow.node.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/cow2.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Cow.core = function(config){
if (typeof(config) == 'undefined' ) {
config = {};
}
this._version = '2.0.2-beta1';
this._version = '2.0.2';
this._herdname = config.herdname || 'cow';
this._userid = null;
this._socketserverid = null;
Expand Down
2 changes: 1 addition & 1 deletion src/cow2.postgres.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Cow.localdb.prototype.writeAll = function(config){
});
promisearray.push(subpromise);
}
var promise = new Promise.all(promisearray);
var promise = Promise.all(promisearray);
return promise;
};

Expand Down
4 changes: 2 additions & 2 deletions src/superpeer/cow.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ Cow.localdb.prototype.writeAll = function(config){
});
promisearray.push(subpromise);
}
var promise = new Promise.all(promisearray);
var promise = Promise.all(promisearray);
return promise;
};

Expand Down Expand Up @@ -2752,7 +2752,7 @@ Cow.core = function(config){
if (typeof(config) == 'undefined' ) {
config = {};
}
this._version = '2.0.2-beta1';
this._version = '2.0.2';
this._herdname = config.herdname || 'cow';
this._userid = null;
this._socketserverid = null;
Expand Down
4 changes: 2 additions & 2 deletions src/superpeer/cow.node.min.js

Large diffs are not rendered by default.

0 comments on commit 1427a51

Please sign in to comment.