Skip to content

Commit 6daaf11

Browse files
author
Julien Pauli
committed
5.5.7
1 parent 073d24b commit 6daaf11

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

NEWS

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
28 Nov 2013, PHP 5.5.7RC1
3+
12 Dec 2013, PHP 5.5.7
44

55
- CLI server:
66
. Added some MIME types to the CLI web server (Chris Jones)
@@ -17,6 +17,10 @@ PHP NEWS
1717
. Fixed bug #65559 (Opcache: cache not cleared if changes occur while
1818
running). (Dmitry)
1919

20+
- OpenSSL:
21+
. Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420).
22+
(Stefan Esser).
23+
2024
- readline
2125
. Fixed Bug #65714 (PHP cli forces the tty to cooked mode). (Remi)
2226

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=5
122122
PHP_RELEASE_VERSION=7
123-
PHP_EXTRA_VERSION="RC1"
123+
PHP_EXTRA_VERSION=""
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`
126126

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 5
55
#define PHP_RELEASE_VERSION 7
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "5.5.7RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.5.7"
88
#define PHP_VERSION_ID 50507

0 commit comments

Comments
 (0)