summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-11-11 09:24:34 +0100
committerFerenc Kovacs <tyrael@php.net>2015-11-11 09:24:34 +0100
commitbc7530bb5f4da5408579fb15625acabc85303e5f (patch)
tree5e708c331ade1dbeedcd7bbc832780a1a31a74aa
parent1a12403002c51c786a1355e8f9bb6e2849068d4e (diff)
downloadphp-git-bc7530bb5f4da5408579fb15625acabc85303e5f.tar.gz
propare for 5.6.16RC1php-5.6.16RC1
-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 6164dd59a4..8a29c85bf6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2015, PHP 5.6.16
+12 Nov 2015, PHP 5.6.16RC1
- Core:
. Fixed bug #70828 (php-fpm 5.6 with opcache crashes when referencing a
diff --git a/configure.in b/configure.in
index c623cf4d8b..4d561c0e86 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=6
PHP_RELEASE_VERSION=16
-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 2cf4a357ad..63905ff936 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 16
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.6.16-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.6.16RC1"
#define PHP_VERSION_ID 50616