summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-06-22 06:33:20 +0100
committerJoe Watkins <krakjoe@php.net>2016-06-22 06:33:20 +0100
commit378de94faad2f6c74e47e06db22639aaee94841b (patch)
treef8017482d16bed544b88952bd8181394549fea0f
parent4e312c3f0044667056e3dd42a32e208c54306053 (diff)
downloadphp-git-378de94faad2f6c74e47e06db22639aaee94841b.tar.gz
bump version after release
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 7 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 18bd35cab6..195e547b34 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? ??? 2016, PHP 7.1.0beta1
+
+
+
23 Jun 2016, PHP 7.1.0alpha2
- Core:
diff --git a/configure.in b/configure.in
index 6983510288..299dbb55fb 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=1
PHP_RELEASE_VERSION=0
-PHP_EXTRA_VERSION="alpha2"
+PHP_EXTRA_VERSION="-dev"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 9c104b0bec..4714e5dc4b 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "alpha2"
-#define PHP_VERSION "7.1.0alpha2"
+#define PHP_EXTRA_VERSION "-dev"
+#define PHP_VERSION "7.1.0-dev"
#define PHP_VERSION_ID 70100