From b79d2285dfe92a726f5331cc84882ff35e94395f Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Mon, 17 Feb 2014 21:16:48 -0800 Subject: [PATCH 1/2] update NEWS --- NEWS | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 90abd2061d0..4ac8ef3dcf2 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2014, PHP 5.4.26 +?? ??? 2014, PHP 5.4.26 + - JSON: . Fixed bug #65753 (JsonSerializeable couldn't implement on module extension) (chobieeee@php.net) @@ -18,7 +20,7 @@ PHP NEWS . Added warning for dangerous client encoding and remove possible injections for pg_insert()/pg_update()/pg_delete()/pg_select(). (Yasuo) -?? ??? 2014, PHP 5.4.25 +06 Feb 2014, PHP 5.4.25 - Core: . Fixed bug #66286 (Incorrect object comparison with inheritance). (Nikita) From c612440e0f50eea166bb8dfd375d5f848f8711f7 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Mon, 17 Feb 2014 21:19:25 -0800 Subject: [PATCH 2/2] 5.4.27 now --- NEWS | 2 +- configure.in | 2 +- main/php_version.h | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 4ac8ef3dcf2..77ee980bd60 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2014, PHP 5.4.26 +?? ??? 2014, PHP 5.4.27 ?? ??? 2014, PHP 5.4.26 diff --git a/configure.in b/configure.in index 4764390acc5..dcd3e05fdb2 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=4 -PHP_RELEASE_VERSION=26 +PHP_RELEASE_VERSION=27 PHP_EXTRA_VERSION="-dev" 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 11791b14bd0..f887b489acf 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 4 -#define PHP_RELEASE_VERSION 26 +#define PHP_RELEASE_VERSION 27 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.4.26-dev" -#define PHP_VERSION_ID 50426 +#define PHP_VERSION "5.4.27-dev" +#define PHP_VERSION_ID 50427