From 0190fea35933b51e8712d049a25c47cdea3ca0f6 Mon Sep 17 00:00:00 2001 From: "shaojin.wensj" Date: Sat, 23 Jul 2022 10:24:10 +0800 Subject: [PATCH] 2.0.10.release --- README.md | 20 ++++++++++---------- README_EN.md | 20 ++++++++++---------- benchmark/pom.xml | 2 +- core/pom.xml | 2 +- extension/pom.xml | 2 +- fastjson1-compatible/pom.xml | 2 +- kotlin/pom.xml | 2 +- pom.xml | 2 +- safemode-test/pom.xml | 2 +- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index e5f7922b4..dc7592145 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 7b8f9953d..25fe32eb6 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 3882720d1..5cedcc44b 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 2f812b67d..bd1fd3646 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 f89b7f0aa..486d0e892 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 3ea2fa184..357a6bec8 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 97d488222..d42a06313 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 984f520dc..166d59b15 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 3ac0115d0..1139afcf6 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