Skip to content

Commit

Permalink
Bump version to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed Jun 29, 2013
1 parent b958717 commit 583481b
Show file tree
Hide file tree
Showing 28 changed files with 35 additions and 27 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#Change Log

## 0.1.3

2013-6-29

* Fix bugs which happen when multiple parallel statements in a block.
* Fix a bug of loading coffee-script with `require`.
* Upgrade dependencies.

## 0.1.2

2013-3-15
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "continuation",
"version": "0.1.2",
"version": "0.1.3",
"description": "Continuation.js is a compiler for asynchronous JavaScript Continuation-Passing style transformation",
"author": "BYVoid",
"license": "BSD",
Expand Down
2 changes: 1 addition & 1 deletion test/results/continue.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ function _$loop_0(_$loop_0__$cont) {
}
_$loop_0(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/defer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ fs = require('fs');
console.error(util.inspect(e, false, null, true));
}
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/diskusage.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ calcDirSize(path, function () {
console.log('Size:', Math.round(totalSize / 1024), 'KB');
console.log('Actual Size on Disk:', Math.round(totalBlockSize / 1024), 'KB');
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/factor.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ factor = function (n, callback) {
};
factor(6, function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/fib.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ fib = function () {
});
};
fib();
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/for.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ function _$loop_0(_$loop_0__$cont) {
}
_$loop_0(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/forin.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ function _$loop_0(_$loop_0__$cont) {
}
_$loop_0(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/if.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ var err, text, a;
return _$cont(_$err);
a = err;
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/ifvar.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ var b, c, i, j, k, p;
return _$cont(_$err);
console.log(b);
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ function _$loop_0(_$loop_0__$cont) {
_$loop_0(function () {
console.log(list);
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ function _$loop_0(_$loop_0__$cont) {
_$loop_0(function () {
console.log('Done');
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/multiple_parallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ var _$errors_0 = [];
console.log(d, e, f);
}));
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/nested_block.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ var x;
x = 1;
alert(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/parallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ var _$errors_0 = [];
_$errors_0 = undefined;
console.log('Done', r);
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/parallel_exception.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ r = [];
}
console.log('Done');
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/pi.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ calcPi(function () {
pi = arguments[0];
console.log(pi);
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/readfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ fs.readFile('continuation.js', function () {
a += 1;
console.log(a, err, text);
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/switch.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ var err, text, end;
}(function () {
end = 'a';
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/switchbreak.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ num = 1;
}
}(function () {
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_body.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ var a, err;
}
console.log('Done');
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_both.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
console.log('Finally');
console.log('Done');
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_catch.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
}(function () {
console.log('Done');
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_if.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
}
console.log('Done');
}));
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_nested_function.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ main(function () {
res = arguments[1];
console.log('main() finished with', err, res);
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/try_sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ try {
x = 3;
alert(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */
2 changes: 1 addition & 1 deletion test/results/whilebreak.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ function _$loop_0(_$loop_0__$cont) {
}
_$loop_0(function () {
});
/* Generated by Continuation.js v0.1.2 */
/* Generated by Continuation.js v0.1.3 */

0 comments on commit 583481b

Please sign in to comment.