summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2015-02-04 18:28:03 +0100
committerJulien Pauli <jpauli@php.net>2015-02-04 18:28:03 +0100
commit75357354147710ae8e27e5f6da7a6e2834b4f73f (patch)
tree0070d263dc23f7a8c416d1b68aea0e8c903f0167
parent93315c4e1d514c2824bbadc23337603314db8f63 (diff)
downloadphp-git-75357354147710ae8e27e5f6da7a6e2834b4f73f.tar.gz
5.6.6RC1php-5.6.6RC1
-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 14aa511da8..eb649cedb9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Feb 2015, PHP 5.6.6
+5 Feb 2015, PHP 5.6.6RC1
- Core:
. Fixed bug #67068 (getClosure returns somethings that's not a closure).
diff --git a/configure.in b/configure.in
index ae07fc38f9..b69b85ef65 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=6
-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 ed1e351fda..5ceef39152 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 6
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.6.6-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.6.6RC1"
#define PHP_VERSION_ID 50606