]> granicus.if.org Git - php/commitdiff
Added information in NEWS and UPGRADING
authorBob Weinand <bobwei9@hotmail.com>
Thu, 6 Feb 2014 13:45:22 +0000 (14:45 +0100)
committerBob Weinand <bobwei9@hotmail.com>
Thu, 6 Feb 2014 13:45:22 +0000 (14:45 +0100)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index b82af0d0e3393bb0313294b3470cfa529f3bdd4d..0b59ffd0aeca3867aad0f349ea24820dbc489986 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,10 @@ PHP                                                                        NEWS
 ?? ??? 2014, PHP 5.6.0 Alpha 3
 
 06 Feb 2014, PHP 5.6.0 Alpha 2
+- Core:
+  . Added T_POW (**) operator
+    (RFC: https://wiki.php.net/rfc/pow-operator). (Tjerk Meesters)
+
 - mysqli
   . Added new function mysqli_get_links_stats() as well as new INI variable
     mysqli.rollback_on_cached_plink of type bool (Andrey)
index 500372ce15d82c1fd6885d7b53d73d60370117ff..b04cb4a1c72a279d5630789c0eef7504009a9ba6 100755 (executable)
--- a/UPGRADING
+++ b/UPGRADING
@@ -43,7 +43,7 @@ PHP X.Y UPGRADE NOTES
 2. New Features
 ========================================
 
-- Added constant scalar expressions syntax
+- Added constant scalar expressions syntax.
   (https://wiki.php.net/rfc/const_scalar_exprs)
 
 - Added dedicated syntax for variadic functions.
@@ -52,6 +52,9 @@ PHP X.Y UPGRADE NOTES
 - Added support for argument unpacking to complement the variadic syntax.
   (https://wiki.php.net/rfc/argument_unpacking)
 
+- Added T_POW (**) operator.
+  (https://wiki.php.net/rfc/pow-operator)
+
 - The php://input stream is now re-usable and can be used concurrently with 
   enable_post_data_reading=0.