Ariya Hidayat 2012-12-31 15:49:52 -08:00
parent a2ffa972d1
commit 9196270a77
2 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@
#define PHANTOMJS_VERSION_MAJOR 1
#define PHANTOMJS_VERSION_MINOR 8
#define PHANTOMJS_VERSION_PATCH 0
#define PHANTOMJS_VERSION_STRING "1.8.0"
#define PHANTOMJS_VERSION_PATCH 1
#define PHANTOMJS_VERSION_STRING "1.8.1"
#define COFFEE_SCRIPT_EXTENSION ".coffee"

View File

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