Ariya Hidayat 2013-03-31 03:06:50 -07:00
parent fcdd274f2e
commit 0bc2eb418e
2 changed files with 4 additions and 4 deletions

View File

@ -33,9 +33,9 @@
#define CONSTS_H
#define PHANTOMJS_VERSION_MAJOR 1
#define PHANTOMJS_VERSION_MINOR 9
#define PHANTOMJS_VERSION_MINOR 10
#define PHANTOMJS_VERSION_PATCH 0
#define PHANTOMJS_VERSION_STRING "1.9.0"
#define PHANTOMJS_VERSION_STRING "1.10.0 (development)"
#define COFFEE_SCRIPT_EXTENSION ".coffee"

View File

@ -51,8 +51,8 @@ describe("phantom global object", function() {
expect(phantom.version.major).toEqual(1);
});
it("should return 9 as the minor version", function() {
expect(phantom.version.minor).toEqual(9);
it("should return 10 as the minor version", function() {
expect(phantom.version.minor).toEqual(10);
});
it("should return 0 as the patch version", function() {