diff --git a/README.md b/README.md index e5f7922b40..dc75921457 100644 --- a/README.md +++ b/README.md @@ -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.9.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.android/) -- 支持`Graal Native-Image` [(2.0.9.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.graal/) +- 支持`Android 8+` [(2.0.10.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.10.android/) +- 支持`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") @@ -46,7 +46,7 @@ com.alibaba.fastjson2 fastjson2 - 2.0.9 + 2.0.10 ``` @@ -54,7 +54,7 @@ ```groovy dependencies { - implementation 'com.alibaba.fastjson2:fastjson2:2.0.9' + implementation 'com.alibaba.fastjson2:fastjson2:2.0.10' } ``` @@ -72,7 +72,7 @@ dependencies { com.alibaba fastjson - 2.0.9 + 2.0.10 ``` @@ -80,7 +80,7 @@ dependencies { ```groovy dependencies { - implementation 'com.alibaba:fastjson:2.0.9' + implementation 'com.alibaba:fastjson:2.0.10' } ``` @@ -94,7 +94,7 @@ dependencies { com.alibaba.fastjson2 fastjson2-kotlin - 2.0.9 + 2.0.10 ``` @@ -102,7 +102,7 @@ dependencies { ```kotlin dependencies { - implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.9") + implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.10") } ``` @@ -116,7 +116,7 @@ dependencies { com.alibaba.fastjson2 fastjson2-extension - 2.0.9 + 2.0.10 ``` @@ -124,7 +124,7 @@ dependencies { ```groovy dependencies { - implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.9' + implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.10' } ``` diff --git a/README_EN.md b/README_EN.md index 7b8f9953db..25fe32eb69 100644 --- a/README_EN.md +++ b/README_EN.md @@ -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.9.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.android/) -- Supports `Graal Native-Image` [(2.0.9.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.9.graal/) +- 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.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) ![fastjson](docs/logo.jpg "fastjson") @@ -46,7 +46,7 @@ Related Documents: com.alibaba.fastjson2 fastjson2 - 2.0.9 + 2.0.10 ``` @@ -54,7 +54,7 @@ Related Documents: ```groovy 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 com.alibaba fastjson - 2.0.9 + 2.0.10 ``` @@ -80,7 +80,7 @@ If you are using `fastjson 1.2.x`, you can use the compatibility package. The co ```groovy 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 com.alibaba.fastjson2 fastjson2-kotlin - 2.0.9 + 2.0.10 ``` @@ -102,7 +102,7 @@ If your project uses `kotlin`, you can use the `Fastjson-Kotlin` module, and use ```kotlin 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 com.alibaba.fastjson2 fastjson2-extension - 2.0.9 + 2.0.10 ``` @@ -124,7 +124,7 @@ If your project uses a framework such as `SpringFramework`, you can use the `fas ```groovy dependencies { - implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.9' + implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.10' } ``` diff --git a/benchmark/pom.xml b/benchmark/pom.xml index 3882720d1e..5cedcc44b0 100644 --- a/benchmark/pom.xml +++ b/benchmark/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml diff --git a/core/pom.xml b/core/pom.xml index 2f812b67df..bd1fd36461 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml diff --git a/extension/pom.xml b/extension/pom.xml index f89b7f0aa5..486d0e892d 100644 --- a/extension/pom.xml +++ b/extension/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml diff --git a/fastjson1-compatible/pom.xml b/fastjson1-compatible/pom.xml index 3ea2fa184b..357a6bec8c 100644 --- a/fastjson1-compatible/pom.xml +++ b/fastjson1-compatible/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml diff --git a/kotlin/pom.xml b/kotlin/pom.xml index 97d4882228..d42a063131 100644 --- a/kotlin/pom.xml +++ b/kotlin/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml diff --git a/pom.xml b/pom.xml index 984f520dc5..166d59b15d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ${project.artifactId} Fastjson is a JSON processor (JSON parser + JSON generator) written in Java pom diff --git a/safemode-test/pom.xml b/safemode-test/pom.xml index 3ac0115d04..1139afcf6a 100644 --- a/safemode-test/pom.xml +++ b/safemode-test/pom.xml @@ -6,7 +6,7 @@ com.alibaba.fastjson2 fastjson2-parent - 2.0.10-SNAPSHOT + 2.0.10 ../pom.xml