2.0.10.release

This commit is contained in:
shaojin.wensj 2022-07-23 10:24:10 +08:00
parent 1de2e25594
commit 0190fea359
9 changed files with 27 additions and 27 deletions

View File

@ -22,8 +22,8 @@
- 支持`Java`服务端、客户端`Android`、大数据场景。 - 支持`Java`服务端、客户端`Android`、大数据场景。
- 支持`Kotlin` [https://alibaba.github.io/fastjson2/kotlin_cn](https://alibaba.github.io/fastjson2/kotlin_cn) - 支持`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) - 支持`JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
- 支持`Android 8+` [(2.0.9.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.android/) - 支持`Android 8+` [(2.0.10.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.10.android/)
- 支持`Graal Native-Image` [(2.0.9.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.graal/) - 支持`Graal Native-Image` [(2.0.10.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.10.graal/)
![fastjson](docs/logo.jpg "fastjson") ![fastjson](docs/logo.jpg "fastjson")
@ -46,7 +46,7 @@
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId> <artifactId>fastjson2</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -54,7 +54,7 @@
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.9' implementation 'com.alibaba.fastjson2:fastjson2:2.0.10'
} }
``` ```
@ -72,7 +72,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -80,7 +80,7 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba:fastjson:2.0.9' implementation 'com.alibaba:fastjson:2.0.10'
} }
``` ```
@ -94,7 +94,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -102,7 +102,7 @@ dependencies {
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.9") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.10")
} }
``` ```
@ -116,7 +116,7 @@ dependencies {
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId> <artifactId>fastjson2-extension</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -124,7 +124,7 @@ dependencies {
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.9' implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.10'
} }
``` ```

View File

@ -21,8 +21,8 @@
- Supports full parsing and partial parsing. - Supports full parsing and partial parsing.
- Supports Java servers and Android Clients, and has big data applications. - 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 Kotlin [https://alibaba.github.io/fastjson2/kotlin_en](https://alibaba.github.io/fastjson2/kotlin_en)
- Supports Android 8+ [(2.0.9.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.android/) - Supports Android 8+ [(2.0.10.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.10.android/)
- Supports `Graal Native-Image` [(2.0.9.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.graal/) - Supports `Graal Native-Image` [(2.0.10.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.10.graal/)
- Supports `JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn) - Supports `JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
![fastjson](docs/logo.jpg "fastjson") ![fastjson](docs/logo.jpg "fastjson")
@ -46,7 +46,7 @@ Related Documents:
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId> <artifactId>fastjson2</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -54,7 +54,7 @@ Related Documents:
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2:2.0.9' implementation 'com.alibaba.fastjson2:fastjson2:2.0.10'
} }
``` ```
@ -72,7 +72,7 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -80,7 +80,7 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba:fastjson:2.0.9' implementation 'com.alibaba:fastjson:2.0.10'
} }
``` ```
@ -94,7 +94,7 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-kotlin</artifactId> <artifactId>fastjson2-kotlin</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -102,7 +102,7 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use
```kotlin ```kotlin
dependencies { dependencies {
implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.9") implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.10")
} }
``` ```
@ -116,7 +116,7 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
<dependency> <dependency>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId> <artifactId>fastjson2-extension</artifactId>
<version>2.0.9</version> <version>2.0.10</version>
</dependency> </dependency>
``` ```
@ -124,7 +124,7 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas
```groovy ```groovy
dependencies { dependencies {
implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.9' implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.10'
} }
``` ```

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>

View File

@ -6,7 +6,7 @@
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
<description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description> <description>Fastjson is a JSON processor (JSON parser + JSON generator) written in Java</description>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.alibaba.fastjson2</groupId> <groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-parent</artifactId> <artifactId>fastjson2-parent</artifactId>
<version>2.0.10-SNAPSHOT</version> <version>2.0.10</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>