Skip to content

Commit

Permalink
Getting ready for 1.9.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Sep 6, 2013
1 parent 66f6496 commit 3ff03ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/consts.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions test/phantom-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 3ff03ac

Please sign in to comment.