summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2013-07-10 19:43:08 +0200
committerJohannes Schlüter <johannes@php.net>2013-07-10 19:43:08 +0200
commitb1e49d95a17f8e553172da43834588a8ea78081e (patch)
treee961c0b106d1dc40a172317f0c836b6156472855
parent154a39a72db346628cce8af1246bd6c267e6d576 (diff)
downloadphp-git-PHP-5.3.27.tar.gz
-rw-r--r--NEWS5
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
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