We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d252566 commit d9cda3dCopy full SHA for d9cda3d
src/consts.h
@@ -34,8 +34,8 @@
34
35
#define PHANTOMJS_VERSION_MAJOR 2
36
#define PHANTOMJS_VERSION_MINOR 1
37
-#define PHANTOMJS_VERSION_PATCH 0
38
-#define PHANTOMJS_VERSION_STRING "2.1.0"
+#define PHANTOMJS_VERSION_PATCH 1
+#define PHANTOMJS_VERSION_STRING "2.1.1"
39
40
#define HTTP_HEADER_CONTENT_LENGTH "content-length"
41
#define HTTP_HEADER_CONTENT_TYPE "content-type"
test/basics/version.js
@@ -3,5 +3,5 @@
3
test(function () {
4
assert_equals(phantom.version.major, 2);
5
assert_equals(phantom.version.minor, 1);
6
- assert_equals(phantom.version.patch, 0);
+ assert_equals(phantom.version.patch, 1);
7
}, "PhantomJS version number is accurate");
0 commit comments