Skip to content

Commit 84981a9

Browse files
committed
2.0.34 release
1 parent 4609e88 commit 84981a9

File tree

28 files changed

+90
-113
lines changed

28 files changed

+90
-113
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.33</version>
44+
<version>2.0.34</version>
4545
</dependency>
4646
```
4747

4848
`Gradle`:
4949

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

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

7474
`Gradle`:
7575

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

@@ -111,7 +111,7 @@ dependencies {
111111

112112
```kotlin
113113
dependencies {
114-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.33")
114+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.34")
115115
}
116116
```
117117

@@ -132,30 +132,30 @@ dependencies {
132132
<dependency>
133133
<groupId>com.alibaba.fastjson2</groupId>
134134
<artifactId>fastjson2-extension-spring5</artifactId>
135-
<version>2.0.33</version>
135+
<version>2.0.34</version>
136136
</dependency>
137137
```
138138

139139
```xml
140140
<dependency>
141141
<groupId>com.alibaba.fastjson2</groupId>
142142
<artifactId>fastjson2-extension-spring6</artifactId>
143-
<version>2.0.33</version>
143+
<version>2.0.34</version>
144144
</dependency>
145145
```
146146

147147
`Gradle`:
148148

149149
```groovy
150150
dependencies {
151-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.33'
151+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.34'
152152
}
153153
```
154154

155155

156156
```groovy
157157
dependencies {
158-
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.33'
158+
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.34'
159159
}
160160
```
161161

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.33</version>
50+
<version>2.0.34</version>
5151
</dependency>
5252
```
5353

5454
`Gradle`:
5555

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

8080
`Gradle`:
8181

8282
```groovy
8383
dependencies {
84-
implementation 'com.alibaba:fastjson:2.0.33'
84+
implementation 'com.alibaba:fastjson:2.0.34'
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.33</version>
98+
<version>2.0.34</version>
9999
</dependency>
100100
```
101101

@@ -117,7 +117,7 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
117117

118118
```kotlin
119119
dependencies {
120-
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.33")
120+
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.34")
121121
}
122122
```
123123

@@ -138,15 +138,15 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
138138
<dependency>
139139
<groupId>com.alibaba.fastjson2</groupId>
140140
<artifactId>fastjson2-extension</artifactId>
141-
<version>2.0.33</version>
141+
<version>2.0.34</version>
142142
</dependency>
143143
```
144144

145145
`Gradle`:
146146

147147
```groovy
148148
dependencies {
149-
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.33'
149+
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.34'
150150
}
151151
```
152152

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.34-SNAPSHOT</version>
9+
<version>2.0.34</version>
1010
</parent>
1111

1212
<artifactId>fastjson2-adapter</artifactId>

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

benchmark/src/test/java/com/alibaba/fastjson2/benchmark/eishay/MediaAPTTest0.java

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

codegen/pom.xml

Lines changed: 33 additions & 9 deletions
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.34-SNAPSHOT</version>
9+
<version>2.0.34</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

@@ -80,17 +80,41 @@
8080
</configuration>
8181
</plugin>
8282
<plugin>
83-
<artifactId>maven-surefire-plugin</artifactId>
83+
<artifactId>maven-javadoc-plugin</artifactId>
84+
<executions>
85+
<execution>
86+
<id>attach-javadoc</id>
87+
<goals>
88+
<goal>jar</goal>
89+
</goals>
90+
</execution>
91+
</executions>
8492
<configuration>
85-
<includes>
86-
<include>com/alibaba/fastjson2/**/*.java</include>
87-
</includes>
88-
<systemPropertyVariables>
89-
<user.timezone>Asia/Shanghai</user.timezone>
90-
</systemPropertyVariables>
91-
<argLine>${add.modules.option}</argLine>
93+
<show>protected</show>
94+
<charset>UTF-8</charset>
95+
<encoding>UTF-8</encoding>
96+
<docencoding>UTF-8</docencoding>
97+
<doclint>all,-missing</doclint>
98+
<links>
99+
<link>https://docs.oracle.com/javase/8/docs/api</link>
100+
</links>
101+
<additionalJOptions>
102+
<additionalJOption>-J-Duser.language=en -J-Duser.country=US</additionalJOption>
103+
</additionalJOptions>
92104
</configuration>
93105
</plugin>
106+
<plugin>
107+
<artifactId>maven-gpg-plugin</artifactId>
108+
<executions>
109+
<execution>
110+
<id>sign-artifacts</id>
111+
<phase>verify</phase>
112+
<goals>
113+
<goal>sign</goal>
114+
</goals>
115+
</execution>
116+
</executions>
117+
</plugin>
94118
</plugins>
95119
</build>
96120
</project>

extension/src/test/java/com/alibaba/fastjson2/internal/processor/APTTest0.java renamed to codegen/src/test/java/com/alibaba/fastjson2/internal/processor/APTTest0.java

File renamed without changes.

extension/src/test/java/com/alibaba/fastjson2/internal/processor/Bean.java renamed to codegen/src/test/java/com/alibaba/fastjson2/internal/processor/Bean.java

File renamed without changes.

extension/src/test/java/com/alibaba/fastjson2/internal/processor/BeanTest.java renamed to codegen/src/test/java/com/alibaba/fastjson2/internal/processor/BeanTest.java

File renamed without changes.

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

0 commit comments

Comments
 (0)