Skip to content

Commit 563fc96

Browse files
committed
Bump version to 0.1.6 and update readme
1 parent 14e74f1 commit 563fc96

30 files changed

+52
-29
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
#Change Log
22

3+
## 0.1.6
4+
5+
2015-3-25
6+
7+
* Fix more `this` binding issues.
8+
* Fix module searching bugs.
9+
* Fix `continue` in `for in`.
10+
11+
## 0.1.5
12+
13+
2015-3-6
14+
15+
* Fix `this` binding issues.
16+
317
## 0.1.4
418

519
2013-10-4

Diff for: README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Install Continuation.js with [npm](https://npmjs.org/package/continuation):
66

77
npm install -g continuation
88

9-
Latest version: 0.1.4 (2013-10-04)
9+
Latest version: 0.1.6 (2015-03-25)
1010

1111
[Change log](https://github.com/BYVoid/continuation/blob/master/CHANGELOG.md)
1212

@@ -524,3 +524,12 @@ Below is a comparison among projects related to synchronous to asynchronous tran
524524
<td>JavaScript</td>
525525
</tr>
526526
</table>
527+
528+
## Contributers
529+
530+
* [Carbo Kuo](https://github.com/BYVoid)
531+
* [curimit](https://github.com/curimit)
532+
* [Tomi Belan](https://github.com/TomiBelan)
533+
* [Reynir Björnsson](https://github.com/reynir)
534+
* [summivox](https://github.com/summivox)
535+
* [shankerwangmiao](https://github.com/shankerwangmiao)

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "continuation",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "Continuation.js is a compiler for asynchronous JavaScript Continuation-Passing style transformation",
55
"author": "BYVoid",
66
"license": "BSD",

Diff for: test/results/continue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function _$loop_0(_$loop_0__$cont) {
1717
_$loop_0 = _$loop_0.bind(this);
1818
_$loop_0(function () {
1919
});
20-
/* Generated by Continuation.js v0.1.5 */
20+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/defer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ fs = require('fs');
2222
console.log(e);
2323
}
2424
}));
25-
/* Generated by Continuation.js v0.1.5 */
25+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/diskusage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ calcDirSize(path, function (arguments, _$param7, _$param8, _$param9) {
6565
console.log('Size:', Math.round(totalSize / 1024), 'KB');
6666
console.log('Actual Size on Disk:', Math.round(totalBlockSize / 1024), 'KB');
6767
}.bind(this, arguments));
68-
/* Generated by Continuation.js v0.1.5 */
68+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/factor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ factor = function (n, callback) {
1414
};
1515
factor(6, function (arguments) {
1616
}.bind(this, arguments));
17-
/* Generated by Continuation.js v0.1.5 */
17+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/fib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ fib = function () {
2424
});
2525
};
2626
fib();
27-
/* Generated by Continuation.js v0.1.5 */
27+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/for.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ function _$loop_0(_$loop_0__$cont) {
2020
_$loop_0 = _$loop_0.bind(this);
2121
_$loop_0(function () {
2222
});
23-
/* Generated by Continuation.js v0.1.5 */
23+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/forin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ function _$loop_0(_$loop_0__$cont) {
2525
_$loop_0 = _$loop_0.bind(this);
2626
_$loop_0(function () {
2727
});
28-
/* Generated by Continuation.js v0.1.5 */
28+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/if.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ var err, text, a;
3333
return _$cont(_$err);
3434
a = err;
3535
}.bind(this)));
36-
/* Generated by Continuation.js v0.1.5 */
36+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/ifvar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ var b, c, i, j, k, p;
2727
return _$cont(_$err);
2828
console.log(b);
2929
}.bind(this)));
30-
/* Generated by Continuation.js v0.1.5 */
30+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ _$loop_0 = _$loop_0.bind(this);
2727
_$loop_0(function () {
2828
console.log(list);
2929
});
30-
/* Generated by Continuation.js v0.1.5 */
30+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/loop.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ _$loop_0 = _$loop_0.bind(this);
1515
_$loop_0(function () {
1616
console.log('Done');
1717
});
18-
/* Generated by Continuation.js v0.1.5 */
18+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/multiple_parallel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ var _$errors_0 = [];
6363
console.log(d, e, f);
6464
}));
6565
}));
66-
/* Generated by Continuation.js v0.1.5 */
66+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/nested_block.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ var x;
22
x = 1;
33
console.log(function (arguments) {
44
}.bind(this, arguments));
5-
/* Generated by Continuation.js v0.1.5 */
5+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/parallel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ var _$errors_0 = [];
4141
_$errors_0 = undefined;
4242
console.log('Done', r);
4343
}));
44-
/* Generated by Continuation.js v0.1.5 */
44+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/parallel_exception.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ r = [];
9191
}
9292
console.log('Done');
9393
}));
94-
/* Generated by Continuation.js v0.1.5 */
94+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/pi.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ calcPi(function (arguments, _$param1) {
1717
pi = _$param1;
1818
console.log(pi);
1919
}.bind(this, arguments));
20-
/* Generated by Continuation.js v0.1.5 */
20+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/switch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ var err, text, end;
5959
}.bind(this)(function (_$err) {
6060
end = 'a';
6161
}.bind(this)));
62-
/* Generated by Continuation.js v0.1.5 */
62+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/switchbreak.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ num = 1;
2424
}
2525
}.bind(this)(function (_$err) {
2626
}.bind(this)));
27-
/* Generated by Continuation.js v0.1.5 */
27+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/this_argument.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ obj.showWithDelay(10, function (arguments) {
2121
obj.showWithDelay('a', 'b', 10, function (arguments) {
2222
}.bind(this, arguments));
2323
}.bind(this, arguments));
24-
/* Generated by Continuation.js v0.1.5 */
24+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/this_argument_if.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ o = {
2121
};
2222
o.inner();
2323
console.log(this.name);
24-
/* Generated by Continuation.js v0.1.5 */
24+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_body.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ var a, err;
2424
}
2525
console.log('Done');
2626
}));
27-
/* Generated by Continuation.js v0.1.5 */
27+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_both.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
console.log('Finally');
2727
console.log('Done');
2828
}));
29-
/* Generated by Continuation.js v0.1.5 */
29+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_catch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
}(function () {
1313
console.log('Done');
1414
}));
15-
/* Generated by Continuation.js v0.1.5 */
15+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_if.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
}
3939
console.log('Done');
4040
}));
41-
/* Generated by Continuation.js v0.1.5 */
41+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_nested_function.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ main(function (arguments, _$param0, _$param1) {
3535
res = _$param1;
3636
console.log('main() finished with', err, res);
3737
}.bind(this, arguments));
38-
/* Generated by Continuation.js v0.1.5 */
38+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/try_sync.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ try {
77
x = 3;
88
setTimeout(function (arguments) {
99
}.bind(this, arguments), 10);
10-
/* Generated by Continuation.js v0.1.5 */
10+
/* Generated by Continuation.js v0.1.6 */

Diff for: test/results/whilebreak.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function _$loop_0(_$loop_0__$cont) {
1717
_$loop_0 = _$loop_0.bind(this);
1818
_$loop_0(function () {
1919
});
20-
/* Generated by Continuation.js v0.1.5 */
20+
/* Generated by Continuation.js v0.1.6 */

0 commit comments

Comments
 (0)