summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-05-10 13:16:44 +0200
committerAnatol Belski <ab@php.net>2016-05-10 13:16:44 +0200
commit2beacaad49a50b18bfdb03fdd5272d0f1daa19a1 (patch)
treef460fec5d2cc8f916836058ef3b2c152b32c6032
parenta1ed4ab3caf33b59742897b43462d033864bb490 (diff)
downloadphp-git-2beacaad49a50b18bfdb03fdd5272d0f1daa19a1.tar.gz
set versionsphp-7.0.7RC1
-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 982c9edb9a..db3a5014ae 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016 PHP 7.0.7
+12 May 2016 PHP 7.0.7RC1
- Core:
. Fixed bug #72162 (use-after-free - error_reporting). (Laruence)
diff --git a/configure.in b/configure.in
index c56fe6aab7..2978377c9f 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=7
-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 00021c119b..9c59b4dd39 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 7
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.7-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.0.7RC1"
#define PHP_VERSION_ID 70007