Skip to content

Commit 7d875fb

Browse files
author
Julien Pauli
committed
Going for 5.5.33 now
1 parent 2a7d8c0 commit 7d875fb

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

NEWS

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
** PHP 5.5 is in security-only mode , please do not commit to this branch **
4-
?? ??? 2016, PHP 5.5.32
4+
?? ??? 2016, PHP 5.5.33
5+
6+
04 Feb 2016, PHP 5.5.32
57

68
- Core:
79
. Fixed bug #71039 (exec functions ignore length but look for NULL termination).
@@ -10,6 +12,12 @@ PHP NEWS
1012
input). (Leo Gaspard)
1113
. Fixed bug #71459 (Integer overflow in iptcembed()). (Stas)
1214

15+
- GD:
16+
. Improved the fix for bug #70976. (Remi)
17+
18+
- PCRE:
19+
. Upgraded pcrelib to 8.38.
20+
1321
- Phar:
1422
. Fixed bug #71354 (Heap corruption in tar/zip/phar parser). (Stas)
1523
. Fixed bug #71391 (NULL Pointer Dereference in phar_tar_setupmetadata()).

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
119119

120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=5
122-
PHP_RELEASE_VERSION=32
122+
PHP_RELEASE_VERSION=33
123123
PHP_EXTRA_VERSION="-dev"
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.in to change version number */
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 5
5-
#define PHP_RELEASE_VERSION 32
5+
#define PHP_RELEASE_VERSION 33
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.5.32-dev"
8-
#define PHP_VERSION_ID 50532
7+
#define PHP_VERSION "5.5.33-dev"
8+
#define PHP_VERSION_ID 50533

0 commit comments

Comments
 (0)