Skip to content

Commit

Permalink
release 0.7.94
Browse files Browse the repository at this point in the history
  • Loading branch information
raimohanska committed Jun 18, 2017
1 parent 378c2ad commit 9e0b399
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "bacon",
"version": "0.7.93",
"version": "0.7.94",
"main": "dist/Bacon.js",
"ignore": [
".*",
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,6 +1,6 @@
{
"name": "bacon",
"version": "0.7.93",
"version": "0.7.94",
"main": "dist/Bacon.js",
"repo": "raimohanska/bacon.js",
"scripts": ["dist/Bacon.js"]
Expand Down
6 changes: 3 additions & 3 deletions dist/Bacon.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/Bacon.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/Bacon.noAssert.js
Expand Up @@ -5,7 +5,7 @@
return 'Bacon';
}
};
Bacon.version = '0.7.93';
Bacon.version = '0.7.94';
var Exception = (typeof global !== 'undefined' && global !== null ? global : this).Error;
var nop = function () {
};
Expand Down Expand Up @@ -327,7 +327,7 @@
}
};
function containsObs(obs, aftersList) {
for (var i in aftersList) {
for (var i = 0; i < aftersList.length; i++) {
if (aftersList[i][0].id == obs.id)
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "baconjs",
"description": "A small functional reactive programming lib for JavaScript.",
"version": "0.7.93",
"version": "0.7.94",
"keywords": [
"bacon.js",
"bacon",
Expand Down

0 comments on commit 9e0b399

Please sign in to comment.