Skip to content

Commit 63a6854

Browse files
committed
2.0.56 release
1 parent 6771980 commit 63a6854

File tree

28 files changed

+61
-61
lines changed

28 files changed

+61
-61
lines changed

README.md

+10-10
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.55</version>
44+
<version>2.0.56</version>
4545
</dependency>
4646
```
4747

4848
`Gradle`:
4949

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

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

7474
`Gradle`:
7575

7676
```groovy
7777
dependencies {
78-
implementation 'com.alibaba:fastjson:2.0.55'
78+
implementation 'com.alibaba:fastjson:2.0.56'
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.55</version>
92+
<version>2.0.56</version>
9393
</dependency>
9494
```
9595

@@ -114,7 +114,7 @@ dependencies {
114114

115115
```kotlin
116116
dependencies {
117-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55")
117+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
118118
}
119119
```
120120

@@ -135,30 +135,30 @@ dependencies {
135135
<dependency>
136136
<groupId>com.alibaba.fastjson2</groupId>
137137
<artifactId>fastjson2-extension-spring5</artifactId>
138-
<version>2.0.55</version>
138+
<version>2.0.56</version>
139139
</dependency>
140140
```
141141

142142
```xml
143143
<dependency>
144144
<groupId>com.alibaba.fastjson2</groupId>
145145
<artifactId>fastjson2-extension-spring6</artifactId>
146-
<version>2.0.55</version>
146+
<version>2.0.56</version>
147147
</dependency>
148148
```
149149

150150
`Gradle`:
151151

152152
```groovy
153153
dependencies {
154-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55'
154+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
155155
}
156156
```
157157

158158

159159
```groovy
160160
dependencies {
161-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55'
161+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
162162
}
163163
```
164164

README_EN.md

+8-8
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.55</version>
50+
<version>2.0.56</version>
5151
</dependency>
5252
```
5353

5454
`Gradle`:
5555

5656
```groovy
5757
dependencies {
58-
implementation 'com.alibaba.fastjson2:fastjson2:2.0.55'
58+
implementation 'com.alibaba.fastjson2:fastjson2:2.0.56'
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.55</version>
76+
<version>2.0.56</version>
7777
</dependency>
7878
```
7979

8080
`Gradle`:
8181

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

@@ -95,7 +95,7 @@ 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.55</version>
98+
<version>2.0.56</version>
9999
</dependency>
100100
```
101101

@@ -120,7 +120,7 @@ If the data class is used or the parameters are passed in through constructor, t
120120

121121
```kotlin
122122
dependencies {
123-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55")
123+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
124124
}
125125
```
126126

@@ -141,15 +141,15 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
141141
<dependency>
142142
<groupId>com.alibaba.fastjson2</groupId>
143143
<artifactId>fastjson2-extension</artifactId>
144-
<version>2.0.55</version>
144+
<version>2.0.56</version>
145145
</dependency>
146146
```
147147

148148
`Gradle`:
149149

150150
```groovy
151151
dependencies {
152-
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.55'
152+
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.56'
153153
}
154154
```
155155

benchmark/pom.xml

+1-1
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.56-SNAPSHOT</version>
9+
<version>2.0.56</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

codegen-test/pom.xml

+1-1
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.56-SNAPSHOT</version>
9+
<version>2.0.56</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

codegen/pom.xml

+1-1
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.56-SNAPSHOT</version>
9+
<version>2.0.56</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

core/pom.xml

+1-1
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.56-SNAPSHOT</version>
9+
<version>2.0.56</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

docs/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
<dependency>
3232
<groupId>com.alibaba.fastjson2</groupId>
3333
<artifactId>fastjson2</artifactId>
34-
<version>2.0.55</version>
34+
<version>2.0.56</version>
3535
</dependency>
3636
```
3737

3838
`Gradle`:
3939

4040
```groovy
4141
dependencies {
42-
implementation 'com.alibaba.fastjson2:fastjson2:2.0.55'
42+
implementation 'com.alibaba.fastjson2:fastjson2:2.0.56'
4343
}
4444
```
4545

@@ -57,15 +57,15 @@ dependencies {
5757
<dependency>
5858
<groupId>com.alibaba</groupId>
5959
<artifactId>fastjson</artifactId>
60-
<version>2.0.55</version>
60+
<version>2.0.56</version>
6161
</dependency>
6262
```
6363

6464
`Gradle`:
6565

6666
```groovy
6767
dependencies {
68-
implementation 'com.alibaba:fastjson:2.0.55'
68+
implementation 'com.alibaba:fastjson:2.0.56'
6969
}
7070
```
7171

@@ -79,15 +79,15 @@ dependencies {
7979
<dependency>
8080
<groupId>com.alibaba.fastjson2</groupId>
8181
<artifactId>fastjson2-kotlin</artifactId>
82-
<version>2.0.55</version>
82+
<version>2.0.56</version>
8383
</dependency>
8484
```
8585

8686
`Gradle`:
8787

8888
```kotlin
8989
dependencies {
90-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55")
90+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
9191
}
9292
```
9393

@@ -101,15 +101,15 @@ dependencies {
101101
<dependency>
102102
<groupId>com.alibaba.fastjson2</groupId>
103103
<artifactId>fastjson2-extension</artifactId>
104-
<version>2.0.55</version>
104+
<version>2.0.56</version>
105105
</dependency>
106106
```
107107

108108
`Gradle`:
109109

110110
```groovy
111111
dependencies {
112-
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.55'
112+
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.56'
113113
}
114114
```
115115

docs/kotlin_cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<dependency>
1111
<groupId>com.alibaba.fastjson2</groupId>
1212
<artifactId>fastjson2-kotlin</artifactId>
13-
<version>2.0.55</version>
13+
<version>2.0.56</version>
1414
</dependency>
1515
```
1616

@@ -35,7 +35,7 @@
3535

3636
```kotlin
3737
dependencies {
38-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55")
38+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
3939
}
4040
```
4141

docs/kotlin_en.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If your project uses `kotlin`, you can use the` Fastjson-Kotlin` module, and use
1010
<dependency>
1111
<groupId>com.alibaba.fastjson2</groupId>
1212
<artifactId>fastjson2-kotlin</artifactId>
13-
<version>2.0.55</version>
13+
<version>2.0.56</version>
1414
</dependency>
1515
```
1616

@@ -35,7 +35,7 @@ If the data class is used or the parameters are passed in through constructor, t
3535

3636
```kotlin
3737
dependencies {
38-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.55")
38+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.56")
3939
}
4040
```
4141

docs/spring_support_cn.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ Fastjson2采用多module的结构设计,对SpringFramework等框架的支持
1010
<dependency>
1111
<groupId>com.alibaba.fastjson2</groupId>
1212
<artifactId>fastjson2-extension-spring5</artifactId>
13-
<version>2.0.55</version>
13+
<version>2.0.56</version>
1414
</dependency>
1515

1616
or
1717

1818
<dependency>
1919
<groupId>com.alibaba.fastjson2</groupId>
2020
<artifactId>fastjson2-extension-spring6</artifactId>
21-
<version>2.0.55</version>
21+
<version>2.0.56</version>
2222
</dependency>
2323
```
2424

2525
`Gradle`:
2626

2727
```groovy
2828
dependencies {
29-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55'
29+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
3030
}
3131
3232
or
3333
3434
dependencies {
35-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55'
35+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
3636
}
3737
```
3838
> 2.0.23版本之后为了兼容Spring 5.x / 6.x,将不同版本独立开不同的依赖包。

docs/spring_support_en.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@ independent in the `extension` dependency.
1111
<dependency>
1212
<groupId>com.alibaba.fastjson2</groupId>
1313
<artifactId>fastjson2-extension-spring5</artifactId>
14-
<version>2.0.55</version>
14+
<version>2.0.56</version>
1515
</dependency>
1616

1717
or
1818

1919
<dependency>
2020
<groupId>com.alibaba.fastjson2</groupId>
2121
<artifactId>fastjson2-extension-spring6</artifactId>
22-
<version>2.0.55</version>
22+
<version>2.0.56</version>
2323
</dependency>
2424
```
2525

2626
`Gradle`:
2727

2828
```groovy
2929
dependencies {
30-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.55'
30+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.56'
3131
}
3232
3333
or
3434
3535
dependencies {
36-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.55'
36+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.56'
3737
}
3838
```
3939
> After version 2.0.23, in order to be compatible with Spring 5.x / 6.x, different versions are independently opened with different dependency packages.

docs/vector_optimized.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
JDK 17中提供了[vector api](https://openjdk.org/jeps/426),可以用SIMD来优化性能。
22

3-
fastjson 2.0.55版本开始全面使用SWAR(SIMD within a register)来做SIMD优化,不再需要使用vector api.
3+
fastjson 2.0.56版本开始全面使用SWAR(SIMD within a register)来做SIMD优化,不再需要使用vector api.

example-graalvm-native/pom.xml

+2-2
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.56-SNAPSHOT</version>
9+
<version>2.0.56</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -35,7 +35,7 @@
3535
<maven.compiler.source>17</maven.compiler.source>
3636
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
3737
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
38-
<fastjson2.version>2.0.56-SNAPSHOT</fastjson2.version>
38+
<fastjson2.version>2.0.56</fastjson2.version>
3939
<imageName>fastjson2-example-graalvm-native</imageName>
4040
</properties>
4141

0 commit comments

Comments
 (0)