Skip to content

Commit

Permalink
2.0.28 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Apr 15, 2023
1 parent c86666f commit 5b5191f
Show file tree
Hide file tree
Showing 23 changed files with 56 additions and 56 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.28'
}
```

Expand All @@ -66,15 +66,15 @@ dependencies {
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.27'
implementation 'com.alibaba:fastjson:2.0.28'
}
```

Expand All @@ -88,7 +88,7 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>

<!-- 有些场景需要依赖kotlin-reflect -->
Expand All @@ -103,7 +103,7 @@ dependencies {

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.27")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.28")
}
```

Expand All @@ -117,15 +117,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.28'
}
```

Expand Down
16 changes: 8 additions & 8 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ Related Documents:
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.28'
}
```

Expand All @@ -72,15 +72,15 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.27'
implementation 'com.alibaba:fastjson:2.0.28'
}
```

Expand All @@ -94,15 +94,15 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Kotlin Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.27")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.28")
}
```

Expand All @@ -116,15 +116,15 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.28'
}
```

Expand Down
2 changes: 1 addition & 1 deletion adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>fastjson2-parent</artifactId>
<groupId>com.alibaba.fastjson2</groupId>
<version>2.0.28-SNAPSHOT</version>
<version>2.0.28</version>
</parent>

<artifactId>fastjson2-adapter</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions android-test/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ android {

dependencies {
implementation 'com.alibaba:fastjson:1.1.73.android'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.27-SNAPSHOT'
implementation 'com.alibaba.fastjson2:fastjson2-kotlin:2.0.27-SNAPSHOT'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.28'
implementation 'com.alibaba.fastjson2:fastjson2-kotlin:2.0.28'
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.8.10'

implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
Expand Down
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId>
<version>2.0.28-SNAPSHOT</version>
<version>2.0.28</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId>
<version>2.0.28-SNAPSHOT</version>
<version>2.0.28</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
16 changes: 8 additions & 8 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.28'
}
```

Expand All @@ -57,15 +57,15 @@ dependencies {
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.27'
implementation 'com.alibaba:fastjson:2.0.28'
}
```

Expand All @@ -79,15 +79,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.27")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.28")
}
```

Expand All @@ -101,15 +101,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.28'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/kotlin_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Kotlin Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.27")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.28")
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/kotlin_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ If your project uses `kotlin`, you can use the` Fastjson-Kotlin` module, and use
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Kotlin Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.27")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.28")
}
```

Expand Down
8 changes: 4 additions & 4 deletions docs/spring_support_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ Fastjson2采用多module的结构设计,对SpringFramework等框架的支持
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring5</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>

or

<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring6</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.28'
}
or
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.28'
}
```
> 2.0.23版本之后为了兼容Spring 5.x / 6.x,将不同版本独立开不同的依赖包。
Expand Down
8 changes: 4 additions & 4 deletions docs/spring_support_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@ independent in the `extension` dependency.
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring5</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>

or

<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension-spring6</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.28'
}
or
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.27'
implementation 'com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.28'
}
```
> 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.
Expand Down
4 changes: 2 additions & 2 deletions docs/vector_optimized.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
JDK 17中提供了[vector api](https://openjdk.org/jeps/426),可以用SIMD来优化性能。

fastjson 2.0.27中已经支持vector api,这个优化目前处于incubator状态,需要通过如下方法打开:
fastjson 2.0.28中已经支持vector api,这个优化目前处于incubator状态,需要通过如下方法打开:

加上依赖
```xml
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-incubator-vector</artifactId>
<version>2.0.27</version>
<version>2.0.28</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions example-graalvm-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId>
<version>2.0.28-SNAPSHOT</version>
<version>2.0.28</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -35,7 +35,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
<fastjson2.version>2.0.28-SNAPSHOT</fastjson2.version>
<fastjson2.version>2.0.28</fastjson2.version>
<imageName>fastjson2-example-graalvm-native</imageName>
</properties>

Expand Down
Loading

0 comments on commit 5b5191f

Please sign in to comment.