Next in this branch if 1.6.2.

1.6
Ariya Hidayat 2012-07-29 23:36:55 -07:00
parent 716ded0a0b
commit 7d0493f2aa
2 changed files with 4 additions and 4 deletions

View File

@ -35,8 +35,8 @@
// Current Version: 1.6.0 // Current Version: 1.6.0
#define PHANTOMJS_VERSION_MAJOR 1 #define PHANTOMJS_VERSION_MAJOR 1
#define PHANTOMJS_VERSION_MINOR 6 #define PHANTOMJS_VERSION_MINOR 6
#define PHANTOMJS_VERSION_PATCH 1 #define PHANTOMJS_VERSION_PATCH 2
#define PHANTOMJS_VERSION_STRING "1.6.1" #define PHANTOMJS_VERSION_STRING "1.6.2"
#define COFFEE_SCRIPT_EXTENSION ".coffee" #define COFFEE_SCRIPT_EXTENSION ".coffee"

View File

@ -56,8 +56,8 @@ describe("phantom global object", function() {
expect(phantom.version.minor).toEqual(6); expect(phantom.version.minor).toEqual(6);
}); });
it("should return 1 as the patch version", function() { it("should return 2 as the patch version", function() {
expect(phantom.version.patch).toEqual(1); expect(phantom.version.patch).toEqual(2);
}); });
it("should have 'injectJs' function", function() { it("should have 'injectJs' function", function() {