Skip to content

Commit 6e9dd86

Browse files
committed
2.0.31 release
1 parent a88bb14 commit 6e9dd86

File tree

27 files changed

+1177
-65
lines changed

27 files changed

+1177
-65
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@
4141
<dependency>
4242
<groupId>com.alibaba.fastjson2</groupId>
4343
<artifactId>fastjson2</artifactId>
44-
<version>2.0.30</version>
44+
<version>2.0.31</version>
4545
</dependency>
4646
```
4747

4848
`Gradle`:
4949

5050
```groovy
5151
dependencies {
52-
implementation 'com.alibaba.fastjson2:fastjson2:2.0.30'
52+
implementation 'com.alibaba.fastjson2:fastjson2:2.0.31'
5353
}
5454
```
5555

@@ -67,15 +67,15 @@ dependencies {
6767
<dependency>
6868
<groupId>com.alibaba</groupId>
6969
<artifactId>fastjson</artifactId>
70-
<version>2.0.30</version>
70+
<version>2.0.31</version>
7171
</dependency>
7272
```
7373

7474
`Gradle`:
7575

7676
```groovy
7777
dependencies {
78-
implementation 'com.alibaba:fastjson:2.0.30'
78+
implementation 'com.alibaba:fastjson:2.0.31'
7979
}
8080
```
8181

@@ -89,7 +89,7 @@ dependencies {
8989
<dependency>
9090
<groupId>com.alibaba.fastjson2</groupId>
9191
<artifactId>fastjson2-kotlin</artifactId>
92-
<version>2.0.30</version>
92+
<version>2.0.31</version>
9393
</dependency>
9494

9595
<!-- 有些场景需要依赖kotlin-reflect -->
@@ -104,7 +104,7 @@ dependencies {
104104

105105
```kotlin
106106
dependencies {
107-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.30")
107+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.31")
108108
}
109109
```
110110

@@ -118,30 +118,30 @@ dependencies {
118118
<dependency>
119119
<groupId>com.alibaba.fastjson2</groupId>
120120
<artifactId>fastjson2-extension-spring5</artifactId>
121-
<version>2.0.30</version>
121+
<version>2.0.31</version>
122122
</dependency>
123123
```
124124

125125
```xml
126126
<dependency>
127127
<groupId>com.alibaba.fastjson2</groupId>
128128
<artifactId>fastjson2-extension-spring6</artifactId>
129-
<version>2.0.30</version>
129+
<version>2.0.31</version>
130130
</dependency>
131131
```
132132

133133
`Gradle`:
134134

135135
```groovy
136136
dependencies {
137-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.30'
137+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.31'
138138
}
139139
```
140140

141141

142142
```groovy
143143
dependencies {
144-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.30'
144+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.31'
145145
}
146146
```
147147

README_EN.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ Related Documents:
4747
<dependency>
4848
<groupId>com.alibaba.fastjson2</groupId>
4949
<artifactId>fastjson2</artifactId>
50-
<version>2.0.30</version>
50+
<version>2.0.31</version>
5151
</dependency>
5252
```
5353

5454
`Gradle`:
5555

5656
```groovy
5757
dependencies {
58-
implementation 'com.alibaba.fastjson2:fastjson2:2.0.30'
58+
implementation 'com.alibaba.fastjson2:fastjson2:2.0.31'
5959
}
6060
```
6161

@@ -73,15 +73,15 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
7373
<dependency>
7474
<groupId>com.alibaba</groupId>
7575
<artifactId>fastjson</artifactId>
76-
<version>2.0.30</version>
76+
<version>2.0.31</version>
7777
</dependency>
7878
```
7979

8080
`Gradle`:
8181

8282
```groovy
8383
dependencies {
84-
implementation 'com.alibaba:fastjson:2.0.30'
84+
implementation 'com.alibaba:fastjson:2.0.31'
8585
}
8686
```
8787

@@ -95,15 +95,15 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
9595
<dependency>
9696
<groupId>com.alibaba.fastjson2</groupId>
9797
<artifactId>fastjson2-kotlin</artifactId>
98-
<version>2.0.30</version>
98+
<version>2.0.31</version>
9999
</dependency>
100100
```
101101

102102
`Kotlin Gradle`:
103103

104104
```kotlin
105105
dependencies {
106-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.30")
106+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.31")
107107
}
108108
```
109109

@@ -117,15 +117,15 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
117117
<dependency>
118118
<groupId>com.alibaba.fastjson2</groupId>
119119
<artifactId>fastjson2-extension</artifactId>
120-
<version>2.0.30</version>
120+
<version>2.0.31</version>
121121
</dependency>
122122
```
123123

124124
`Gradle`:
125125

126126
```groovy
127127
dependencies {
128-
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.30'
128+
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.31'
129129
}
130130
```
131131

adapter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>fastjson2-parent</artifactId>
88
<groupId>com.alibaba.fastjson2</groupId>
9-
<version>2.0.31-SNAPSHOT</version>
9+
<version>2.0.31</version>
1010
</parent>
1111

1212
<artifactId>fastjson2-adapter</artifactId>

android-test/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ android {
3535

3636
dependencies {
3737
implementation 'com.alibaba:fastjson:1.1.73.android'
38-
implementation 'com.alibaba.fastjson2:fastjson2:2.0.31-SNAPSHOT'
39-
implementation 'com.alibaba.fastjson2:fastjson2-kotlin:2.0.31-SNAPSHOT'
38+
implementation 'com.alibaba.fastjson2:fastjson2:2.0.31'
39+
implementation 'com.alibaba.fastjson2:fastjson2-kotlin:2.0.31'
4040
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.8.10'
4141

4242
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.alibaba.fastjson2</groupId>
88
<artifactId>fastjson2-parent</artifactId>
9-
<version>2.0.31-SNAPSHOT</version>
9+
<version>2.0.31</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

benchmark/src/test/java/com/alibaba/fastjson2/benchmark/GenReport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
public class GenReport {
88
public void gen() throws Exception {
99
File dir = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/");
10-
File file = new File(dir, "benchmark_2.0.30_raw.md");
11-
File outFile = new File(dir, "benchmark_2.0.30.md");
10+
File file = new File(dir, "benchmark_2.0.31_raw.md");
11+
File outFile = new File(dir, "benchmark_2.0.31.md");
1212

1313
Map<String, BenchmarkResult> benchResults = new LinkedHashMap<>();
1414

benchmark/src/test/java/com/alibaba/fastjson2/benchmark/ReadResult.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88

99
public class ReadResult {
1010
public static void main(String[] args) throws Exception {
11-
File outFile = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/benchmark_2.0.30_raw.md");
11+
File outFile = new File("/Users/wenshao/Work/git/fastjson2/docs/benchmark/benchmark_2.0.31_raw.md");
1212
// File file = new File("/Users/wenshao/Downloads/result_2.0.25.out");
1313

1414
Map<String, String> files = new LinkedHashMap<>();
15-
files.put("ecs.g8i.xlarge", "/Users/wenshao/Downloads/result_2.0.30_g8.out");
16-
files.put("ecs.g7.xlarge", "/Users/wenshao/Downloads/result_2.0.30_g7.out");
17-
files.put("ecs.g8m.xlarge", "/Users/wenshao/Downloads/result_2.0.30_g8m.out");
18-
files.put("OrangePI5", "/Users/wenshao/Downloads/result_2.0.30_orangepi5.out");
15+
files.put("ecs.g8i.xlarge", "/Users/wenshao/Downloads/result_2.0.31_g8.out");
16+
files.put("ecs.g7.xlarge", "/Users/wenshao/Downloads/result_2.0.31_g7.out");
17+
files.put("ecs.g8m.xlarge", "/Users/wenshao/Downloads/result_2.0.31_g8m.out");
18+
files.put("OrangePI5", "/Users/wenshao/Downloads/result_2.0.31_orangepi5.out");
1919

2020
PrintStream out = new PrintStream(new FileOutputStream(outFile));
2121
files.forEach((k, v) -> {

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.alibaba.fastjson2</groupId>
88
<artifactId>fastjson2-parent</artifactId>
9-
<version>2.0.31-SNAPSHOT</version>
9+
<version>2.0.31</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)