Commit 6bf3ecd1 6bf3ecd1dd32ed6dd1befd19e6860d8f6644683c by Nicolas Perriault

s/revision/patch (semver.org compliance)

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