summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-04-29 23:57:37 +0200
committerFerenc Kovacs <tyrael@php.net>2015-04-30 00:00:18 +0200
commite629e4ba201c5003a3eaf9e801a4e20c1f61e866 (patch)
tree4f2aa7a6f7c28d8019076996c95fa03162171086
parentd004c1d5fff77451ff3c6e96cfd8a11dbd83eb0a (diff)
downloadphp-git-e629e4ba201c5003a3eaf9e801a4e20c1f61e866.tar.gz
5.6.9RC1php-5.6.9RC1
-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 257c02480a..b845f32523 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? May 2015, PHP 5.6.9
+30 May 2015, PHP 5.6.9RC1
- Core:
. Fixed bug #69467 (Wrong checked for the interface by using Trait).
diff --git a/configure.in b/configure.in
index 29bf13fcb3..57d80c4876 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=9
-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 a899388085..591912921c 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 9
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.6.9-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.6.9RC1"
#define PHP_VERSION_ID 50609