Commit 930f368c 930f368c314563e21e68a0a0294d1838f31cc4f2 by Nicolas Perriault

bump 0.6.2

1 parent daba0d13
CasperJS Changelog
==================
XXXX-XX-XX, v0.6.2
2012-01-19, v0.6.2
------------------
- fixes #43 - Exit status not reported back to caller
- closes #42 - Use file name of test script as 'classname' in JUnit XML report (@mpeltonen)
- fixed [#41](https://github.com/n1k0/casperjs/issues/41) - injecting casperjs lib crashes `cmd.exe` on Windows 7
- fixed [#42](https://github.com/n1k0/casperjs/issues/42) - Use file name of test script as 'classname' in JUnit XML report (@mpeltonen)
- fixed [#43](https://github.com/n1k0/casperjs/issues/43) - Exit status not reported back to caller
- suppressed colorized output syntax for windows; was making output hard to read
- added patchy `fs.isWindows()` method
- added `--xunit=<filename>` cli option to `$ casperjs test` command for saving xunit results, eg.:
$ casperjs test tests/suites --xunit=build-result.xml
......
......@@ -33,7 +33,7 @@ phantom.loadCasper = function() {
phantom.casperVersion = {
major: 0,
minor: 6,
patch: 1,
patch: 2,
ident: undefined,
toString: function() {
var version = [this.major, this.minor, this.patch].join('.');
......
Subproject commit ed87d428f75939358f6bdaefb6ae0516022b7536
Subproject commit 50c9d3f003479ee6b62249a5ad33fa3648e9daa9
......
{
"name": "casperjs",
"description": "Navigation scripting & testing utility for PhantomJS",
"version": "0.6.1",
"version": "0.6.2",
"keywords": [
"phantomjs",
"javascript"
......