Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
Mark as version 3.0.0-development
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Dec 25, 2019
1 parent 8bfc658 commit 1c53215
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/consts.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions test/basics/version.js
Original file line number Diff line number Diff line change
@@ -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");

0 comments on commit 1c53215

Please sign in to comment.