Skip to content

Commit

Permalink
chore(package): release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Mar 3, 2017
1 parent e8b2eef commit 8f2503a
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 38 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
<a name="10.3.0"></a>
# [10.3.0](https://github.com/staltz/xstream/compare/v10.2.0...v10.3.0) (2017-03-03)


### Bug Fixes

* **combine:** do array cloning to avoid several bugs ([e8b2eef](https://github.com/staltz/xstream/commit/e8b2eef))


### Performance Improvements

* **dist:** use Google Closure Compiler instead of uglify-js ([ed6f793](https://github.com/staltz/xstream/commit/ed6f793))



<a name="10.2.0"></a>
# [10.2.0](https://github.com/staltz/xstream/compare/v10.1.0...v10.2.0) (2017-02-03)

Expand Down
10 changes: 8 additions & 2 deletions dist/xstream.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,14 @@ var CombineListener = (function () {
var p = this.p, out = this.out;
if (out === NO)
return;
if (p.up(t, this.i))
out._n(p.vals);
if (p.up(t, this.i)) {
var a = p.vals;
var l = a.length;
var b = Array(l);
for (var i = 0; i < l; ++i)
b[i] = a[i];
out._n(b);
}
};
CombineListener.prototype._e = function (err) {
var out = this.out;
Expand Down
Loading

0 comments on commit 8f2503a

Please sign in to comment.