summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-02-06 14:45:22 +0100
committerBob Weinand <bobwei9@hotmail.com>2014-02-06 14:45:22 +0100
commit7a022da23b44ea932295dad8a155a59942ebd3da (patch)
treef85cfea86cc1f0df16ac8edd3972f75dbfe13ccb
parentaff56f3c4539869910cf2778cf0ece2d8c2dd671 (diff)
downloadphp-git-7a022da23b44ea932295dad8a155a59942ebd3da.tar.gz
Added information in NEWS and UPGRADING
-rw-r--r--NEWS4
-rwxr-xr-xUPGRADING5
2 files changed, 8 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index b82af0d0e3..0b59ffd0ae 100644
--- 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)
diff --git a/UPGRADING b/UPGRADING
index 500372ce15..b04cb4a1c7 100755
--- 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.