diff --git a/README.md b/README.md
index 3b4ce6ee..c6ee27a5 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,10 @@ So I do not use my json-smart anymore. I had fun with this project. If you want
# Changelog
+### *V 2.4.10*
+
+* Fix unstacking issue with more than 400 elements in an array.
+
### *V 2.4.9* (2023-03-07)
* Add depth limit of 400 when parsing JSON.
diff --git a/accessors-smart/pom.xml b/accessors-smart/pom.xml
index 47e49b9c..c809e1d8 100644
--- a/accessors-smart/pom.xml
+++ b/accessors-smart/pom.xml
@@ -17,7 +17,7 @@ limitations under the License.
4.0.0
net.minidev
accessors-smart
- 2.4.9
+ 2.4.10
ASM based accessors helper used by json-smart
Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.
bundle
diff --git a/json-smart-action/pom.xml b/json-smart-action/pom.xml
index 00a0884b..5b4001c2 100644
--- a/json-smart-action/pom.xml
+++ b/json-smart-action/pom.xml
@@ -2,7 +2,7 @@
4.0.0
net.minidev
json-smart-action
- 2.4.9
+ 2.4.10
JSON-smart-action Small and Fast Parser
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
bundle
@@ -245,7 +245,7 @@
net.minidev
json-smart
- 2.4.9
+ 2.4.10
diff --git a/json-smart/pom.xml b/json-smart/pom.xml
index 270a0454..be97623f 100644
--- a/json-smart/pom.xml
+++ b/json-smart/pom.xml
@@ -17,7 +17,7 @@ limitations under the License.
4.0.0
net.minidev
json-smart
- 2.4.9
+ 2.4.10
JSON Small and Fast Parser
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
bundle
@@ -260,7 +260,7 @@ limitations under the License.
net.minidev
accessors-smart
- 2.4.9
+ 2.4.10