1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-09-11 12:55:33 +03:00

Master branch becomes the development version (issue #13937)

This commit is contained in:
Ariya Hidayat 2016-01-24 21:59:08 -08:00
parent 65bc139bfc
commit 482b91d124
2 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@
#define CONSTS_H
#define PHANTOMJS_VERSION_MAJOR 2
#define PHANTOMJS_VERSION_MINOR 1
#define PHANTOMJS_VERSION_MINOR 2
#define PHANTOMJS_VERSION_PATCH 0
#define PHANTOMJS_VERSION_STRING "2.1.0"
#define PHANTOMJS_VERSION_STRING "2.2.0-development"
#define HTTP_HEADER_CONTENT_LENGTH "content-length"
#define HTTP_HEADER_CONTENT_TYPE "content-type"

View File

@ -2,6 +2,6 @@
// updated with every release.
test(function () {
assert_equals(phantom.version.major, 2);
assert_equals(phantom.version.minor, 1);
assert_equals(phantom.version.minor, 2);
assert_equals(phantom.version.patch, 0);
}, "PhantomJS version number is accurate");