From b1e49d95a17f8e553172da43834588a8ea78081e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schl=C3=BCter?= Date: Wed, 10 Jul 2013 19:43:08 +0200 Subject: PHP 5.3.27 --- NEWS | 5 ++++- configure.in | 2 +- main/php_version.h | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 66ffe874f3..5b0229e9c4 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -20 Jun 2013, PHP 5.3.27RC1 +11 Jul 2013, PHP 5.3.27 - Core: . Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC). (Laruence) @@ -28,6 +28,9 @@ PHP NEWS . Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on 64-bits systems). (Laruence) +- XML: + . Fixed bug #65236 (heap corruption in xml parser). (Rob) + 06 Jun 2013, PHP 5.3.26 - Core: diff --git a/configure.in b/configure.in index b8004ea02a..78716ac01a 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h) PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 PHP_RELEASE_VERSION=27 -PHP_EXTRA_VERSION="RC1" +PHP_EXTRA_VERSION="" 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 4a28e50b66..6432d3e36e 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 27 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "5.3.27RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "5.3.27" #define PHP_VERSION_ID 50327 -- cgit v1.2.1