Skip to content

Commit

Permalink
update version 2.0.3 -> 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed May 21, 2022
1 parent 15597cc commit 439cf89
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
- 支持全量解析和部分解析。
- 支持`Java`服务端、客户端`Android`、大数据场景。
- 支持`Kotlin`
- 支持`Android` (2.0.3.android)
- 支持`Graal Native-Image` (2.0.3.graal)
- 支持`Android` (2.0.4.android)
- 支持`Graal Native-Image` (2.0.4.graal)

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

Expand All @@ -45,15 +45,15 @@
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.3'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.4'
}
```

Expand All @@ -71,15 +71,15 @@ dependencies {
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.3'
implementation 'com.alibaba:fastjson:2.0.4'
}
```

Expand All @@ -93,15 +93,15 @@ dependencies {
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.3")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.4")
}
```

Expand Down
16 changes: 8 additions & 8 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
- Supports Android (2.0.3.android)
- Supports Graal Native-Image (2.0.3.graal)
- Supports Android (2.0.4.android)
- Supports Graal Native-Image (2.0.4.graal)

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

Expand All @@ -45,15 +45,15 @@ Related Documents:
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.3'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.4'
}
```

Expand All @@ -71,15 +71,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.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```groovy
dependencies {
implementation 'com.alibaba:fastjson:2.0.3'
implementation 'com.alibaba:fastjson:2.0.4'
}
```

Expand All @@ -93,15 +93,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.3</version>
<version>2.0.4</version>
</dependency>
```

`Gradle`:

```kotlin
dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.3")
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.4")
}
```

Expand Down

0 comments on commit 439cf89

Please sign in to comment.