You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2016/01/31 22:38:34 UTC

svn commit: r1727858 - /commons/proper/jexl/trunk/src/site/xdoc/changes.xml

Author: henrib
Date: Sun Jan 31 21:38:33 2016
New Revision: 1727858

URL: http://svn.apache.org/viewvc?rev=1727858&view=rev
Log:
JEXL:
Updated changes.xml to reflect JEXL-18{6,7}

Modified:
    commons/proper/jexl/trunk/src/site/xdoc/changes.xml

Modified: commons/proper/jexl/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/site/xdoc/changes.xml?rev=1727858&r1=1727857&r2=1727858&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/jexl/trunk/src/site/xdoc/changes.xml Sun Jan 31 21:38:33 2016
@@ -25,6 +25,14 @@
         <author email="dev@commons.apache.org">Commons Developers</author>
     </properties>
     <body>
+        <release version="3.1" date="unreleased">
+            <action dev="henrib" type="fix" issue="JEXL-187" due-to="Dmitri Blinov">
+                Jexl Syntax doc does not mention 'continue' and 'break' operators
+            </action>
+            <action dev="henrib" type="fix" issue="JEXL-186" due-to="Philippe Mouawad">
+                Performance regression in arithmetic operations compared to JEXL 2.1
+            </action>
+        </release>
         <release version="3.0" date="2015-12-27">
             <action dev="henrib" type="fix" issue="JEXL-184">
                 dot-ed identifiers parsing failure
@@ -174,7 +182,7 @@
                 Syntactically enforce that expressions do not contain statements: POTENTIAL EXPRESSION BREAK!
                 (ie an expression is not a script and can NOT use 'if','for'... and blocks)
             </action>
-           <action dev="henrib" type="add">
+            <action dev="henrib" type="add">
                 Added syntactic shortcut to create parametric scripts (script source creates an anonymous function)
             </action>
             <action dev="henrib" type="fix">