diff --git a/src/consts.h b/src/consts.h index ea37ab1c..275d1776 100644 --- a/src/consts.h +++ b/src/consts.h @@ -35,8 +35,8 @@ // Current Version: 1.6.0 #define PHANTOMJS_VERSION_MAJOR 1 #define PHANTOMJS_VERSION_MINOR 6 -#define PHANTOMJS_VERSION_PATCH 1 -#define PHANTOMJS_VERSION_STRING "1.6.1" +#define PHANTOMJS_VERSION_PATCH 2 +#define PHANTOMJS_VERSION_STRING "1.6.2" #define COFFEE_SCRIPT_EXTENSION ".coffee" diff --git a/test/phantom-spec.js b/test/phantom-spec.js index 8e34f7d0..9bd29d7a 100644 --- a/test/phantom-spec.js +++ b/test/phantom-spec.js @@ -56,8 +56,8 @@ describe("phantom global object", function() { expect(phantom.version.minor).toEqual(6); }); - 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() {