From f63815d4bc28fe2846514908e6b67770cee3a3da Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Mon, 20 May 2013 00:31:57 -0700 Subject: [PATCH] Issue #10939: Mark for the upcoming version 1.9.1. https://github.com/ariya/phantomjs/issues/10939 --- src/consts.h | 4 ++-- test/phantom-spec.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/consts.h b/src/consts.h index b1b4f5ca..c3f42982 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 0 -#define PHANTOMJS_VERSION_STRING "1.9.0" +#define PHANTOMJS_VERSION_PATCH 1 +#define PHANTOMJS_VERSION_STRING "1.9.1" #define COFFEE_SCRIPT_EXTENSION ".coffee" diff --git a/test/phantom-spec.js b/test/phantom-spec.js index 369b2f70..ede377e5 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 0 as the patch version", function() { - expect(phantom.version.patch).toEqual(0); + it("should return 1 as the patch version", function() { + expect(phantom.version.patch).toEqual(1); }); it("should have 'injectJs' function", function() {