Commit: 7edb7a126fea1d752feafc2a9d781758e3ce786d Author: Julien Pauli <[email protected]> Thu, 20 Jun 2013 23:15:45 +0200 Parents: b63572f45ac79e476bcac48e63dc0f410e217db0 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=7edb7a126fea1d752feafc2a9d781758e3ce786d Log: Fixes for 5.5.0 announcement Changed paths: M ChangeLog-5.php M releases/5_5_0.php Diff: diff --git a/ChangeLog-5.php b/ChangeLog-5.php index 51aaf25..abb6fd7 100644 --- a/ChangeLog-5.php +++ b/ChangeLog-5.php @@ -231,6 +231,7 @@ function peclbugl($number) { echo "<a href=\"http://pecl.php.net/bugs/bug.php? <li>Fix build with system libgd >= 2.1 which is now the minimal version required (as build with previous version is broken). No change when bundled libgd is used</li> + <li>Upgraded libgd to 2.1</li> </ul> </ul> diff --git a/releases/5_5_0.php b/releases/5_5_0.php index a7d5aaa..a826ea6 100644 --- a/releases/5_5_0.php +++ b/releases/5_5_0.php @@ -20,11 +20,11 @@ This release includes a large number of new features and bug fixes. <li>Added <a href="http://www.php.net/exceptions">"finally"</a> keyword. </li> <li>Added <a href="http://www.php.net/password">simplified password hashing API</a>.</li> <li>Added support for constant array/string dereferencing.</li> - <li>Added Class Name Resolution As Scalar Via "class" Keyword</li> - <li>Added support for using empty() on the result of function calls and other expressions</li> - <li>Added support for non-scalar Iterator keys in foreach</li> - <li>Added support for list in foreach</li> - <li>Added Zend Opcache extension and enable building it by default (OPCode cache)</li> + <li>Added Class Name Resolution As Scalar Via <a href="https://wiki.php.net/rfc/class_name_scalars">"class" Keyword</a></li> + <li>Added <a href="https://wiki.php.net/rfc/empty_isset_exprs">support for using empty() on the result of function calls and other expressions</a></li> + <li>Added support for <a href="https://wiki.php.net/rfc/foreach-non-scalar-keys">non-scalar Iterator keys in foreach</a></li> + <li>Added support for <a href="https://wiki.php.net/rfc/foreachlist">list in foreach</a></li> + <li>Added Zend Opcache extension and enable building it by default</li> <li>A lot more improvements and fixes</li> </ul> @@ -32,7 +32,7 @@ This release includes a large number of new features and bug fixes. <b>Changes that affect compatibility:</b> </p> <ul> - <li><a href="http://www.php.net/php-logo-guid">PHP logo GUIDs removed</a> have been removed</li> + <li><a href="http://www.php.net/php-logo-guid">PHP logo GUIDs</a> have been removed</li> <li>Windows XP and 2003 support dropped</li> <li>Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules</li> </ul> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
