This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/master by this push:
     new 13c3d383 Prepare for the next release candidate
13c3d383 is described below

commit 13c3d3838c11e5e9e95723c9e12d274535d31298
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sat Nov 1 12:54:05 2025 +0000

    Prepare for the next release candidate
---
 README.md                       |  8 +++----
 RELEASE-NOTES.txt               | 52 +++++++++++++++++++++++++++++++++++++++++
 src/changes/release-notes.vm    |  2 +-
 src/site/xdoc/download_jexl.xml | 26 ++++++++++-----------
 4 files changed, 70 insertions(+), 18 deletions(-)

diff --git a/README.md b/README.md
index fe22efef..768bc7a4 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons JEXL
 
 [![Java 
CI](https://github.com/apache/commons-jexl/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-jexl/actions/workflows/maven.yml)
 [![Maven 
Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-jexl3?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.commons/commons-jexl3)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-jexl3/3.5.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-jexl3/3.5.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-jexl3/3.6.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-jexl3/3.6.0)
 
[![CodeQL](https://github.com/apache/commons-jexl/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-jexl/actions/workflows/codeql-analysis.yml)
 [![OpenSSF 
Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-jexl/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-jexl)
 
@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven 
repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-jexl3</artifactId>
-  <version>3.5.0</version>
+  <version>3.6.0</version>
 </dependency>
 ```
 
@@ -90,8 +90,8 @@ There are some guidelines which will make applying PRs easier 
for us:
 + Respect the existing code style for each file.
 + Create minimal diffs - disable on save actions like reformat source code or 
organize imports. If you feel the source code should be reformatted create a 
separate PR for this change.
 + Provide JUnit tests for your changes and make sure your changes don't break 
any existing tests by running `mvn`.
-+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, 
which contains all build checks.
-+ To see the code coverage report, regardless of coverage failures, run `mvn 
clean site -Dcommons.jacoco.haltOnFailure=false`
++ Before you push a PR, run `mvn` (without arguments). This runs the default 
goal which contains all build checks.
++ To see the code coverage report, regardless of coverage failures, run `mvn 
clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
 
 If you plan to contribute on a regular basis, please consider filing a 
[contributor license agreement](https://www.apache.org/licenses/#clas).
 You can learn more about contributing via GitHub in our [contribution 
guidelines](CONTRIBUTING.md).
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index e63a016e..7cc353d7 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,55 @@
+Apache Commons JEXL 3.6.0 Release Notes
+---------------------------------------
+
+The Apache Commons JEXL team is pleased to announce the release of Apache 
Commons JEXL 3.6.0.
+
+Introduction
+------------
+
+Apache Commons JEXL is a library that facilitates the implementation of 
scripting features in
+        applications and frameworks written in Java.
+
+This is a feature and maintenance release. Java 8 or later is required.
+
+New features
+------------
+
+o JEXL-440:  Switch statement & expressions. 
+
+Fixed Bugs
+----------
+
+o JEXL-447:  Regression in script-defined functions. Thanks to William Price. 
+o JEXL-446:  ClassTool module inspection is too strict. Thanks to William 
Price. 
+o JEXL-442:  Local variables are not resolved in interpolation string 
expression. Thanks to Xu Pengcheng. 
+o JEXL-441:  Tokenization error if "\n" in template expression. Thanks to Xu 
Pengcheng. 
+o JEXL-439:  When using reference capture, incorrect scoping when local 
variable redefines a captured symbol. Thanks to Xu Pengcheng. 
+o JEXL-437:  Semicolons not actually optional between function calls on 
separate lines. Thanks to William Price. 
+o          
org.apache.commons.jexl3.internal.introspection.AbstractExecutor.initMarker(Class,
 String, Class...) throws IllegalArgumentException instead of Exception. Thanks 
to Gary Gregory. 
+o          Reuse BigInteger constants instead of creating new instances in 
JexlArithmetic.toBigInteger(Object). Thanks to Gary Gregory. 
+
+Changes
+-------
+
+o          Bump org.apache.commons:commons-parent from 81 to 91 #344, #368, 
#372. Thanks to Gary Gregory, Dependabot. 
+o          Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 #355. 
Thanks to Gary Gregory, Dependabot. 
+o          Bump com.google.code.gson:gson from 2.13.1 to 2.13.2 #371. Thanks 
to Gary Gregory, Dependabot. 
+
+
+Historical list of changes: 
https://commons.apache.org/proper/commons-jexl/changes.html
+
+For complete information on Apache Commons JEXL, including instructions on how 
to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons JEXL website:
+
+https://commons.apache.org/proper/commons-jexl/
+
+Download page: https://commons.apache.org/proper/commons-jexl/download_jexl.cgi
+
+Have fun!
+-Apache Commons Team
+
+------------------------------------------------------------------------------
+
 
                             Apache Commons JEXL
                                 Version 3.5.0
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index daa27a14..e5b76847 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -14,8 +14,8 @@
 ## KIND, either express or implied.  See the License for the
 ## specific language governing permissions and limitations
 ## under the License.
-
 ${project.name} ${version} Release Notes
+---------------------------------------
 
 The ${developmentTeam} is pleased to announce the release of ${project.name} 
${version}.
 
diff --git a/src/site/xdoc/download_jexl.xml b/src/site/xdoc/download_jexl.xml
index 5564bf26..7add7c2c 100644
--- a/src/site/xdoc/download_jexl.xml
+++ b/src/site/xdoc/download_jexl.xml
@@ -115,32 +115,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons JEXL 3.5.0 ">
+    <section name="Apache Commons JEXL 3.6.0 ">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.5.0-bin.tar.gz">commons-jexl-3.5.0-bin.tar.gz</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.5.0-bin.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.5.0-bin.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.0-bin.tar.gz">commons-jexl-3.6.0-bin.tar.gz</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.0-bin.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.0-bin.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.5.0-bin.zip">commons-jexl-3.5.0-bin.zip</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.5.0-bin.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.5.0-bin.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.0-bin.zip">commons-jexl-3.6.0-bin.zip</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.0-bin.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.0-bin.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.5.0-src.tar.gz">commons-jexl-3.5.0-src.tar.gz</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.5.0-src.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.5.0-src.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.0-src.tar.gz">commons-jexl-3.6.0-src.tar.gz</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.0-src.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.0-src.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.5.0-src.zip">commons-jexl-3.5.0-src.zip</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.5.0-src.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.5.0-src.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.0-src.zip">commons-jexl-3.6.0-src.zip</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.0-src.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.0-src.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>

Reply via email to