1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-10-26 14:29:13 +03:00

Mark as version 3.0.0-development

This commit is contained in:
Ariya Hidayat 2019-11-29 22:07:37 -08:00
parent 8bfc658d45
commit 1c53215f8e
2 changed files with 5 additions and 5 deletions

View File

@ -32,10 +32,10 @@
#ifndef CONSTS_H
#define CONSTS_H
#define PHANTOMJS_VERSION_MAJOR 2
#define PHANTOMJS_VERSION_MINOR 2
#define PHANTOMJS_VERSION_MAJOR 3
#define PHANTOMJS_VERSION_MINOR 0
#define PHANTOMJS_VERSION_PATCH 0
#define PHANTOMJS_VERSION_STRING "2.2.0-development"
#define PHANTOMJS_VERSION_STRING "3.0.0-development"
#define HTTP_HEADER_CONTENT_LENGTH "content-length"
#define HTTP_HEADER_CONTENT_TYPE "content-type"

View File

@ -1,7 +1,7 @@
// This is separate from basics/phantom-object.js because it has to be
// updated with every release.
test(function () {
assert_equals(phantom.version.major, 2);
assert_equals(phantom.version.minor, 2);
assert_equals(phantom.version.major, 3);
assert_equals(phantom.version.minor, 0);
assert_equals(phantom.version.patch, 0);
}, "PhantomJS version number is accurate");