Skip to content

Commit b80637c

Browse files
authored
Bump version from 2.5.0 to 2.5.1 (#181)
Signed-off-by: ZhangJian He <[email protected]>
1 parent fca4257 commit b80637c

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# file system
2+
.DS_Store
3+
14
**/.classpath
25
**/.idea/
36
**/.project

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ So I do not use my json-smart anymore. I had fun with this project. If you want
1919

2020
# Changelog
2121

22+
### *V 2.5.0* (2023-07-10)
23+
24+
* Add flag to drop the limit of json depth. [PR 156](https://github.com/netplex/json-smart-v2/pull/156)
25+
2226
### *V 2.4.11* (2023-05-18)
2327

2428
* Fix error in isWritable in accessor-smart. [PR 147](https://github.com/netplex/json-smart-v2/pull/147)

accessors-smart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
<modelVersion>4.0.0</modelVersion>
1818
<groupId>net.minidev</groupId>
1919
<artifactId>accessors-smart</artifactId>
20-
<version>2.5.0</version>
20+
<version>2.5.1</version>
2121
<name>ASM based accessors helper used by json-smart</name>
2222
<description>Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.</description>
2323
<packaging>bundle</packaging>

json-smart-action/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>net.minidev</groupId>
44
<artifactId>json-smart-action</artifactId>
5-
<version>2.5.0</version>
5+
<version>2.5.1</version>
66
<name>JSON-smart-action Small and Fast Parser</name>
77
<description>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.</description>
88
<packaging>bundle</packaging>
@@ -245,7 +245,7 @@
245245
<dependency>
246246
<groupId>net.minidev</groupId>
247247
<artifactId>json-smart</artifactId>
248-
<version>2.5.0</version>
248+
<version>2.5.1</version>
249249
</dependency>
250250
</dependencies>
251251
</project>

json-smart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
<modelVersion>4.0.0</modelVersion>
1818
<groupId>net.minidev</groupId>
1919
<artifactId>json-smart</artifactId>
20-
<version>2.5.0</version>
20+
<version>2.5.1</version>
2121
<name>JSON Small and Fast Parser</name>
2222
<description>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.</description>
2323
<packaging>bundle</packaging>
@@ -264,7 +264,7 @@ limitations under the License.
264264
<dependency>
265265
<groupId>net.minidev</groupId>
266266
<artifactId>accessors-smart</artifactId>
267-
<version>2.5.0</version>
267+
<version>2.5.1</version>
268268
</dependency>
269269
</dependencies>
270270
</project>

0 commit comments

Comments
 (0)