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

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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

README.md

Lines changed: 10 additions & 1 deletion
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)

package.json

Lines changed: 1 addition & 1 deletion
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",

test/results/continue.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/defer.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/diskusage.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/factor.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/fib.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/for.js

Lines changed: 1 addition & 1 deletion
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 */

test/results/forin.js

Lines changed: 1 addition & 1 deletion
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 */

0 commit comments

Comments
 (0)