Skip to content

Commit 1deae1e

Browse files
committed
update readme, prepare V2.4.11
1 parent 0ac0212 commit 1deae1e

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ 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.4.11* (2023-05-18)
23+
24+
* Fix error in isWritable in accessor-smart. [PR 147](https://github.com/netplex/json-smart-v2/pull/147)
25+
* Update json-smart dependency to use accessor-smart:2.4.11
26+
2227
### *V 2.4.10* (2023-03-17)
2328

2429
* Fix unstacking issue with more than 400 elements in an array.

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.4.10</version>
20+
<version>2.4.11</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.4.10</version>
5+
<version>2.4.11</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.4.10</version>
248+
<version>2.4.11</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.4.10</version>
20+
<version>2.4.11</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>
@@ -260,7 +260,7 @@ limitations under the License.
260260
<dependency>
261261
<groupId>net.minidev</groupId>
262262
<artifactId>accessors-smart</artifactId>
263-
<version>2.4.9</version>
263+
<version>2.4.11</version>
264264
</dependency>
265265
</dependencies>
266266
</project>

0 commit comments

Comments
 (0)