From 7985f7c04df79e8614dc119b86f80034e7ba459d Mon Sep 17 00:00:00 2001 From: wnm3 Date: Thu, 1 Feb 2024 08:43:05 -0500 Subject: [PATCH] IBM/JSONata4Java#300 --- .classpath | 5 ++--- README.md | 8 ++++---- pom.xml | 2 +- tester.sh | 2 +- testerui.cmd | 2 +- testerui.sh | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.classpath b/.classpath index 5cb4a73..ffc75cb 100644 --- a/.classpath +++ b/.classpath @@ -53,17 +53,16 @@ - - - + + diff --git a/README.md b/README.md index fb8ecf0..c9cfd8b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The easiest way to use this library is to include it as a dependency in your Mav com.ibm.jsonata4java JSONata4Java - 2.4.7 + 2.4.8 ``` @@ -53,8 +53,8 @@ Note: to build and deploy the jars to Maven Central you need to use a command li `mvn clean install deploy -Prelease` Once you have run the launcher, you can find the jar files in the /target directory. There are two: -* **JSONata4Java-2.4.7-jar-with-dependencies.jar** (thinks includes dependent jar files) -* **JSONata4Java-2.4.7.jar** (only the JSONata4Java code) +* **JSONata4Java-2.4.8-jar-with-dependencies.jar** (thinks includes dependent jar files) +* **JSONata4Java-2.4.8.jar** (only the JSONata4Java code) The com.api.jsonata4java.Tester program enables you to enter an expression and run it against the same JSON as is used at the https://try.jsonata.org site. You can also @@ -72,7 +72,7 @@ methods are not thread-safe. Issue 260 to add support for timeoutMS and maxDepth to the evaluate methods in Expression. -### New Feature for Version 2.4.7 ### +### New Feature for Version 2.4.8 ### A new function for $fromMillisZoned has been added to allow passing a Timezone string as the 3rd parameter. ### New Feature for Version 2.4 ### diff --git a/pom.xml b/pom.xml index 56e4afe..791ed72 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 4.0.0 com.ibm.jsonata4java JSONata4Java - 2.4.7 + 2.4.8 JSONata4Java Port of jsonata.js to Java to enable rules for JSON content https://github.com/IBM/JSONata4Java diff --git a/tester.sh b/tester.sh index 26daa5f..f62f6c5 100755 --- a/tester.sh +++ b/tester.sh @@ -1,2 +1,2 @@ #! /bin/bash -java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.Tester $1 +java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.Tester $1 diff --git a/testerui.cmd b/testerui.cmd index a70c5a3..0193db8 100644 --- a/testerui.cmd +++ b/testerui.cmd @@ -1 +1 @@ -java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI +java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI diff --git a/testerui.sh b/testerui.sh index 6d3b265..3bd3775 100755 --- a/testerui.sh +++ b/testerui.sh @@ -1,2 +1,2 @@ #! /bin/bash -java -cp target/JSONata4Java-2.4.7-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI +java -cp target/JSONata4Java-2.4.8-jar-with-dependencies.jar com.api.jsonata4java.testerui.TesterUI