Bump version to 1.9.8 and add ChangeLog entry for 1.9.8

https://github.com/ariya/phantomjs/issues/12670
1.9
Mark Stosberg 2014-10-17 20:09:47 -04:00 committed by Ariya Hidayat
parent f9e5c8e82a
commit def023a45d
4 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,11 @@
Please see also http://phantomjs.org/releases.html.
2014-10-22: Version 1.9.8
* Change default SSL protocol to TLSv1 to address POODLE (issue 12655)
To use the old default protocol of SSLv3 which is vulnerable to POODLE
add the --ssl-protocol=SSLv3 flag. Reference: http://poodlebleed.com/
2014-01-25: Version 1.9.7
* Reverted to GhostDriver 1.1.0 instead of 1.1.1 (issue 11915)

View File

@ -1,5 +1,5 @@
%define name phantomjs
%define version 1.9.7
%define version 1.9.8
%define release 1
%define prefix /usr

View File

@ -34,8 +34,8 @@
#define PHANTOMJS_VERSION_MAJOR 1
#define PHANTOMJS_VERSION_MINOR 9
#define PHANTOMJS_VERSION_PATCH 7
#define PHANTOMJS_VERSION_STRING "1.9.7"
#define PHANTOMJS_VERSION_PATCH 8
#define PHANTOMJS_VERSION_STRING "1.9.8"
#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 7 as the patch version", function() {
expect(phantom.version.patch).toEqual(7);
it("should return 8 as the patch version", function() {
expect(phantom.version.patch).toEqual(8);
});
it("should have 'injectJs' function", function() {