Skip to content

Commit d487f5e

Browse files
committed
bump version
1 parent c60067c commit d487f5e

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

NEWS

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2013, PHP 5.4.19
3+
?? ??? 2013, PHP 5.4.20
44

55
- Core:
66
. Fixed bug #65481 (shutdown segfault due to serialize) (Mike)
@@ -56,7 +56,16 @@ PHP NEWS
5656
. Fixed bug #65391 (Unable to send vary header user-agent when
5757
ob_start('ob_gzhandler') is called) (Mike)
5858

59-
?? ??? 2013, PHP 5.4.18
59+
22 Aug 2013, PHP 5.4.19
60+
61+
- Core:
62+
. Fixed bug #64503 (Compilation fails with error: conflicting types for
63+
'zendparse'). (Laruence)
64+
65+
- Openssl:
66+
. Fixed UMR in fix for CVE-2013-4248.
67+
68+
15 Aug 2013, PHP 5.4.18
6069

6170
- Core:
6271
. Fixed value of FILTER_SANITIZE_FULL_SPECIAL_CHARS constant (previously was

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=4
122-
PHP_RELEASE_VERSION=19
122+
PHP_RELEASE_VERSION=20
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 4
5-
#define PHP_RELEASE_VERSION 19
5+
#define PHP_RELEASE_VERSION 20
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.4.19-dev"
8-
#define PHP_VERSION_ID 50419
7+
#define PHP_VERSION "5.4.20-dev"
8+
#define PHP_VERSION_ID 50420

0 commit comments

Comments
 (0)