Ariya Hidayat 2013-09-05 23:35:03 -07:00
parent 66f6496f2d
commit 3ff03acc2f
3 changed files with 9 additions and 4 deletions

View File

@ -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:

View File

@ -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"

View File

@ -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() {