From f68da34119af90223c7f7118ff6c73f50e9bcdd4 Mon Sep 17 00:00:00 2001 From: Julien Pauli Date: Wed, 1 Oct 2014 16:13:35 +0200 Subject: 5.5.18RC1 --- NEWS | 5 ++++- configure.in | 2 +- main/php_version.h | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 50d997875c..1801274a81 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2014, PHP 5.5.18 +02 Oct 2014, PHP 5.5.18RC1 - Core: . Fixed bug #67985 (Incorrect last used array index copied to new array after @@ -15,6 +15,9 @@ PHP NEWS . Fixed bug #65641 (PHP-FPM incorrectly defines the SCRIPT_NAME variable when using Apache, mod_proxy-fcgi and ProxyPass). (Remi) +- OpenSSL: + . Revert regression introduced by fix of bug #41631 + - Reflection: . Fixed bug #68103 (Duplicate entry in Reflection for class alias). (Remi) diff --git a/configure.in b/configure.in index 92b49006e6..5e8d3d5517 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=5 PHP_RELEASE_VERSION=18 -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 e7478d5ce6..b68d21d636 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 5 #define PHP_RELEASE_VERSION 18 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.5.18-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "5.5.18RC1" #define PHP_VERSION_ID 50518 -- cgit v1.2.1