Commit 6c266ac5 6c266ac5e7cdeb42e65413d78d25dcf62d5d0d06 by Nicolas Perriault

bump 0.6.1

1 parent 7d88a761
CasperJS Changelog
==================
2012-01-16, v0.6.1
------------------
- restablished js-emulated click simulation first, then native QtWebKit
events as a fallback; some real world testing have surprinsingly proven the former being often
more efficient than the latter
- fixed casperjs executable could not handle a `PHANTOMJS_EXECUTABLE` containing spaces
- fixed casper could not be used without the executable [as documented](http://n1k0.github.com/casperjs/#faq-executable)
- fixed wrong `debug` log level on `ClientUtils.click()` error; set to `error`
Please check the [updated documentation](http://n1k0.github.com/casperjs).
2012-01-12, v0.6.0
------------------
......
......@@ -33,7 +33,7 @@ phantom.loadCasper = function() {
phantom.casperVersion = {
major: 0,
minor: 6,
patch: 0,
patch: 1,
ident: undefined,
toString: function() {
var version = [this.major, this.minor, this.patch].join('.');
......
Subproject commit 96895e7d4b64bf4d5c4cb9d62197b7c834a1e4ce
Subproject commit a87370ee456f4ebb1e5b89eec311c10d0b8b9764
......
{
"name": "casperjs",
"description": "Navigation scripting & testing utility for PhantomJS",
"version": "0.6.0",
"version": "0.6.1",
"keywords": [
"phantomjs",
"javascript"
......