Commit aaf3c400 aaf3c400cbfb151922388b6fb591be7dd3340049 by Nicolas Perriault

created 0.6 branch, alpha status (merged require branch)

1 parent 31a83594
1 CasperJS Changelog 1 CasperJS Changelog
2 ================== 2 ==================
3 3
4 XXXX-XX-XX, v0.6.0-alpha
5 ------------------------
6
7 - commonjs/nodejs-like module implementation
8
4 XXXX-XX-XX, v0.4.2 9 XXXX-XX-XX, v0.4.2
5 ------------------ 10 ------------------
6 11
......
...@@ -31,9 +31,9 @@ if (!phantom.casperLoaded) { ...@@ -31,9 +31,9 @@ if (!phantom.casperLoaded) {
31 // see http://semver.org/ 31 // see http://semver.org/
32 phantom.casperVersion = { 32 phantom.casperVersion = {
33 major: 0, 33 major: 0,
34 minor: 4, 34 minor: 6,
35 patch: 2, 35 patch: 0,
36 ident: 'experimental-require', 36 ident: 'alpha',
37 toString: function() { 37 toString: function() {
38 var version = [this.major, this.minor, this.patch].join('.'); 38 var version = [this.major, this.minor, this.patch].join('.');
39 if (this.ident) { 39 if (this.ident) {
......
1 { 1 {
2 "name": "casperjs", 2 "name": "casperjs",
3 "description": "Navigation scripting & testing utility for PhantomJS", 3 "description": "Navigation scripting & testing utility for PhantomJS",
4 "version": "0.4.2-trunk", 4 "version": "0.6.0-alpha",
5 "keywords": [ 5 "keywords": [
6 "phantomjs", 6 "phantomjs",
7 "javascript" 7 "javascript"
......