diff --git a/ChangeLog b/ChangeLog index 753d9696..603f5eb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ Please see also http://phantomjs.org/releases.html. +2013-09-06: Version 1.9.2 + + * Fixed graphical artifacts with transparent background on Windows (issue 11276, 11007, 11366) + * Updated GhostDriver to version 1.0.4 (issue 11452) + 2013-06-04: Version 1.9.1 Critical bug fixes: diff --git a/src/consts.h b/src/consts.h index c3f42982..a2410d63 100644 --- a/src/consts.h +++ b/src/consts.h @@ -34,8 +34,8 @@ #define PHANTOMJS_VERSION_MAJOR 1 #define PHANTOMJS_VERSION_MINOR 9 -#define PHANTOMJS_VERSION_PATCH 1 -#define PHANTOMJS_VERSION_STRING "1.9.1" +#define PHANTOMJS_VERSION_PATCH 2 +#define PHANTOMJS_VERSION_STRING "1.9.2" #define COFFEE_SCRIPT_EXTENSION ".coffee" diff --git a/test/phantom-spec.js b/test/phantom-spec.js index ede377e5..e64606f0 100644 --- a/test/phantom-spec.js +++ b/test/phantom-spec.js @@ -55,8 +55,8 @@ describe("phantom global object", function() { expect(phantom.version.minor).toEqual(9); }); - it("should return 1 as the patch version", function() { - expect(phantom.version.patch).toEqual(1); + it("should return 2 as the patch version", function() { + expect(phantom.version.patch).toEqual(2); }); it("should have 'injectJs' function", function() {