Commit 6bf3ecd1 6bf3ecd1dd32ed6dd1befd19e6860d8f6644683c by Nicolas Perriault

s/revision/patch (semver.org compliance)

1 parent db868022
...@@ -33,9 +33,9 @@ ...@@ -33,9 +33,9 @@
33 phantom.casperVersion = { 33 phantom.casperVersion = {
34 major: 0, 34 major: 0,
35 minor: 4, 35 minor: 4,
36 revision: 1, 36 patch: 1,
37 toString: function() { 37 toString: function() {
38 return [this.major, this.minor, this.revision].join('.'); 38 return [this.major, this.minor, this.patch].join('.');
39 } 39 }
40 }; 40 };
41 41
......