Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpodwysocki committed Dec 11, 2014
1 parent 93130b6 commit f76a41f
Show file tree
Hide file tree
Showing 33 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rxjs",
"version": "2.3.21",
"version": "2.3.22",
"main": [
"dist/rx.all.js",
"dist/rx.all.map",
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.all.compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -4407,7 +4407,7 @@ if (!Array.prototype.forEach) {
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.all.compat.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.all.compat.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -4256,7 +4256,7 @@
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.all.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -4293,7 +4293,7 @@ if (!Array.prototype.forEach) {
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.compat.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.compat.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.js
Original file line number Diff line number Diff line change
Expand Up @@ -4142,7 +4142,7 @@
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.lite.compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -3539,7 +3539,7 @@ if (!Array.prototype.forEach) {
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.lite.compat.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.lite.compat.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.lite.js
Original file line number Diff line number Diff line change
Expand Up @@ -3388,7 +3388,7 @@
return source.subscribe(function (value) {
var shouldRun;
try {
shouldRun = predicate.call(thisArg, value, count++, parent);
shouldRun = predicate.call(thisArg, value, count++, source);
} catch (e) {
observer.onError(e);
return;
Expand Down
2 changes: 1 addition & 1 deletion dist/rx.lite.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.lite.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx.min.js

Large diffs are not rendered by default.

Binary file added nuget/RxJS-Aggregates.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-All.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Async.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-BackPressure.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Binding.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Coincidence.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Experimental.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-JoinPatterns.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Lite.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Main.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Testing.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-Time.2.3.21.nupkg
Binary file not shown.
Binary file added nuget/RxJS-VirtualTime.2.3.21.nupkg
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rx",
"title": "Reactive Extensions for JavaScript (RxJS)",
"description": "Library for composing asynchronous and event-based operations in JavaScript",
"version": "2.3.21",
"version": "2.3.22",
"homepage": "https://github.com/Reactive-Extensions/RxJS",
"author": {
"name": "Cloud Programmability Team",
Expand Down

0 comments on commit f76a41f

Please sign in to comment.