diff --git a/.gitignore b/.gitignore
index 24c491d..090978e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,6 @@
+# file system
+.DS_Store
+
**/.classpath
**/.idea/
**/.project
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index a717acc..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-language: java
-jdk:
- - oraclejdk11
- - oraclejdk8
- - oraclejdk7
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 31b781c..ac7a2fd 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.5.0* (2023-07-10)
+
+* Add flag to drop the limit of json depth. [PR 156](https://github.com/netplex/json-smart-v2/pull/156)
+
### *V 2.4.11* (2023-05-18)
* Fix error in isWritable in accessor-smart. [PR 147](https://github.com/netplex/json-smart-v2/pull/147)
diff --git a/accessors-smart/pom.xml b/accessors-smart/pom.xml
index 02e5a7c..09f4a71 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.5.0
+ 2.5.1
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 18ee0c0..7b524b8 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.5.0
+ 2.5.1
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.5.0
+ 2.5.1
diff --git a/json-smart/pom.xml b/json-smart/pom.xml
index 1c85c0f..9254d0c 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.5.0
+ 2.5.1
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.5.0
+ 2.5.1