Skip to content

Commit

Permalink
2.0.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Sep 10, 2022
1 parent 5f4adf7 commit bc09453
Show file tree
Hide file tree
Showing 11 changed files with 1,435 additions and 27 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
- 支持`Java`服务端、客户端`Android`、大数据场景。
- 支持`Kotlin` [https://alibaba.github.io/fastjson2/kotlin_cn](https://alibaba.github.io/fastjson2/kotlin_cn)
- 支持`JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
- 支持`Android 8+` [(2.0.12.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.12.android/)
- 支持`Graal Native-Image` [(2.0.12.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.12.graal/)
- 支持`Android 8+` [(2.0.13.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.13.android/)
- 支持`Graal Native-Image` [(2.0.13.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.13.graal/)

![fastjson](docs/logo.jpg "fastjson")

Expand All @@ -46,15 +46,15 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.12'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.13'
}
```

Expand All @@ -72,15 +72,15 @@ dependencies {
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.12'
implementation 'com.alibaba:fastjson:2.0.13'
}
```

Expand All @@ -94,15 +94,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.12</version>
<version>2.0.13</version>
</dependency>
```

`Kotlin Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.12")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.13")
}
```

Expand All @@ -116,15 +116,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.12'
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.13'
}
```

Expand Down
20 changes: 10 additions & 10 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
- Supports full parsing and partial parsing.
- Supports Java servers and Android Clients, and has big data applications.
- Supports Kotlin [https://alibaba.github.io/fastjson2/kotlin_en](https://alibaba.github.io/fastjson2/kotlin_en)
- Supports Android 8+ [(2.0.12.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.12.android/)
- Supports `Graal Native-Image` [(2.0.12.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.12.graal/)
- Supports Android 8+ [(2.0.13.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.13.android/)
- Supports `Graal Native-Image` [(2.0.13.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.13.graal/)
- Supports `JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)

![fastjson](docs/logo.jpg "fastjson")
Expand All @@ -46,15 +46,15 @@ Related Documents:
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.12'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.13'
}
```

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.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.12'
implementation 'com.alibaba:fastjson:2.0.13'
}
```

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.12</version>
<version>2.0.13</version>
</dependency>
```

`Kotlin Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.12")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.13")
}
```

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.12</version>
<version>2.0.13</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.12'
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.13'
}
```

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.13-SNAPSHOT</version>
<version>2.0.13</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.13-SNAPSHOT</version>
<version>2.0.13</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Loading

0 comments on commit bc09453

Please sign in to comment.