5.5.24RC1

This commit is contained in:
Julien Pauli 2015-03-31 16:03:52 +02:00
parent 2c117a40a7
commit 8e3e034469
3 changed files with 7 additions and 7 deletions

8
NEWS
View File

@ -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)

View File

@ -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`

View File

@ -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