summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-12-22 13:13:08 +0100
committerAnatol Belski <ab@php.net>2015-12-22 13:13:08 +0100
commit8285f90d1dd0d94920c3c0b7683e8844323b0eca (patch)
treee80a5a6a7e00c014da77366f01d362d787839873
parent0402f05ba38ce0fd9a74d16193c668c8b46b55dd (diff)
downloadphp-git-8285f90d1dd0d94920c3c0b7683e8844323b0eca.tar.gz
re-apply bump versionsphp-7.0.2RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 9b6f8b9076..2b5912da12 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Jan 2016 PHP 7.0.2
+24 Dec 2015 PHP 7.0.2RC1
- Core:
. Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7).
diff --git a/configure.in b/configure.in
index e6070e74c5..24acf6897a 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=0
PHP_RELEASE_VERSION=2
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
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 e41ced5e84..630eea283d 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 0
#define PHP_RELEASE_VERSION 2
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.2-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.0.2RC1"
#define PHP_VERSION_ID 70002