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 2017/10/06 15:07:41 UTC

svn commit: r1811341 - in /commons/proper/jexl/trunk: RELEASE-NOTES.txt src/site/xdoc/changes.xml

Author: henrib
Date: Fri Oct  6 15:07:41 2017
New Revision: 1811341

URL: http://svn.apache.org/viewvc?rev=1811341&view=rev
Log:
JEXL:
Updating changes & release notes for last issues fixes

Modified:
    commons/proper/jexl/trunk/RELEASE-NOTES.txt
    commons/proper/jexl/trunk/src/site/xdoc/changes.xml

Modified: commons/proper/jexl/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/RELEASE-NOTES.txt?rev=1811341&r1=1811340&r2=1811341&view=diff
==============================================================================
--- commons/proper/jexl/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/jexl/trunk/RELEASE-NOTES.txt Fri Oct  6 15:07:41 2017
@@ -27,6 +27,7 @@ Version 3.2 is a minor release.
 
 New Features in 3.2:
 ====================
+* JEXL-238:      Restrict getLiteralClass to a Number for NumberLiterals
 * JEXL-236:      Support CharSequence in size(), empty() and contains() operators
 * JEXL-234:      Extend application of operators startsWith and endsWith from String to CharSequence types
 * JEXL-226:      add ?? operator support
@@ -34,6 +35,7 @@ New Features in 3.2:
 
 Bugs Fixed in 3.2:
 ==================
+* JEXL-240:      Unable to invoke a call operator using antish style variable resolution
 * JEXL-231:      Syntax for accessing List elements is not mentioned in docs
 * JEXL-230:      List literal is not mentioned in docs
 * JEXL-227:      JexlScriptEngineFactory.getEngineVersion() should return actual version

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=1811341&r1=1811340&r2=1811341&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/jexl/trunk/src/site/xdoc/changes.xml Fri Oct  6 15:07:41 2017
@@ -25,7 +25,13 @@
         <author email="dev@commons.apache.org">Commons Developers</author>
     </properties>
     <body>
-        <release version="3.1.1" date="unreleased">
+        <release version="3.2" date="unreleased">
+            <action dev="henrib" type="add" issue="JEXL-240" due-to="Dmitri Blinov">
+                 Unable to invoke a call operator using antish style variable resoltion
+            </action>
+            <action dev="henrib" type="add" issue="JEXL-238" due-to="Cameron Samak">
+                Restrict getLiteralClass to a Number for NumberLiterals
+            </action>
             <action dev="henrib" type="add" issue="JEXL-236" due-to="Dmitri Blinov">
                 Support CharSequence in size(), empty() and contains() operators
             </action>