From 8e3e034469d37d6dcc70245c12d5e950339908e2 Mon Sep 17 00:00:00 2001 From: Julien Pauli Date: Tue, 31 Mar 2015 16:03:52 +0200 Subject: [PATCH] 5.5.24RC1 --- NEWS | 8 ++++---- configure.in | 2 +- main/php_version.h | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index 862ef6a3fa6..960a687ef49 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2015, PHP 5.5.24 +02 Apr 2015, PHP 5.5.24RC1 - Core: . Fixed bug #66609 (php crashes with __get() and ++ operator in some cases). @@ -17,13 +17,13 @@ PHP NEWS . Fixed bug #69221 (Segmentation fault when using a generator in combination with an Iterator). (Nikita) +- Curl: + . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya) + - Date: . Export date_get_immutable_ce so that it can be used by extensions. (Derick Rethans) -- Curl: - . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya) - - Enchant: . Fixed bug #65406 (Enchant broker plugins are in the wrong place in windows builds). (Anatol) diff --git a/configure.in b/configure.in index b56b85f12d5..3d58d4ccb48 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=24 -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 2997684bf0c..6a8e89e681b 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 24 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.5.24-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "5.5.24RC1" #define PHP_VERSION_ID 50524