diff --git a/README.md b/README.md
index 4413c70496..5422f0a870 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.16.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.android/)
-- 支持`Graal Native-Image` [(2.0.16.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.graal/)
+- 支持`Android 8+` [(2.0.17.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.android/)
+- 支持`Graal Native-Image` [(2.0.17.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.graal/)
![fastjson](docs/logo.jpg "fastjson")
@@ -47,7 +47,7 @@
com.alibaba.fastjson2
fastjson2
- 2.0.16
+ 2.0.17
```
@@ -55,7 +55,7 @@
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2:2.0.17'
}
```
@@ -73,7 +73,7 @@ dependencies {
com.alibaba
fastjson
- 2.0.16
+ 2.0.17
```
@@ -81,7 +81,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.alibaba:fastjson:2.0.16'
+ implementation 'com.alibaba:fastjson:2.0.17'
}
```
@@ -95,7 +95,7 @@ dependencies {
com.alibaba.fastjson2
fastjson2-kotlin
- 2.0.16
+ 2.0.17
```
@@ -103,7 +103,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.16")
+ implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.17")
}
```
@@ -117,7 +117,7 @@ dependencies {
com.alibaba.fastjson2
fastjson2-extension
- 2.0.16
+ 2.0.17
```
@@ -125,7 +125,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.17'
}
```
diff --git a/README_EN.md b/README_EN.md
index b6161fb22d..b901d78a95 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.16.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.android/)
-- Supports `Graal Native-Image` [(2.0.16.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.graal/)
+- Supports Android 8+ [(2.0.17.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.android/)
+- Supports `Graal Native-Image` [(2.0.17.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.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.16
+ 2.0.17
```
@@ -54,7 +54,7 @@ Related Documents:
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2:2.0.17'
}
```
@@ -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.16
+ 2.0.17
```
@@ -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.16'
+ implementation 'com.alibaba:fastjson:2.0.17'
}
```
@@ -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.16
+ 2.0.17
```
@@ -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.16")
+ implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.17")
}
```
@@ -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.16
+ 2.0.17
```
@@ -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.16'
+ implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.17'
}
```
diff --git a/benchmark/pom.xml b/benchmark/pom.xml
index a5781981e1..8d992d8243 100644
--- a/benchmark/pom.xml
+++ b/benchmark/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/core/pom.xml b/core/pom.xml
index 7a99d2aa24..89f87bebd2 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/docs/index.md b/docs/index.md
index a32821f9b1..fd80313e38 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -7,8 +7,8 @@
- 支持`Java`服务端、客户端`Android`、大数据场景。
- 支持`Kotlin`
- 支持`JSON Schema` [https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
-- 支持`Android` [(2.0.16.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.android/)
-- 支持`Graal Native-Image` [(2.0.16.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.16.graal/)
+- 支持`Android` [(2.0.17.android)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.android/)
+- 支持`Graal Native-Image` [(2.0.17.graal)](https://repo1.maven.org/maven2/com/alibaba/fastjson2/fastjson2/2.0.17.graal/)
![fastjson](logo.jpg "fastjson")
@@ -31,7 +31,7 @@
com.alibaba.fastjson2
fastjson2
- 2.0.16
+ 2.0.17
```
@@ -39,7 +39,7 @@
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2:2.0.17'
}
```
@@ -57,7 +57,7 @@ dependencies {
com.alibaba
fastjson
- 2.0.16
+ 2.0.17
```
@@ -65,7 +65,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.alibaba:fastjson:2.0.16'
+ implementation 'com.alibaba:fastjson:2.0.17'
}
```
@@ -79,7 +79,7 @@ dependencies {
com.alibaba.fastjson2
fastjson2-kotlin
- 2.0.16
+ 2.0.17
```
@@ -87,7 +87,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.16")
+ implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.17")
}
```
@@ -101,7 +101,7 @@ dependencies {
com.alibaba.fastjson2
fastjson2-extension
- 2.0.16
+ 2.0.17
```
@@ -109,7 +109,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.17'
}
```
diff --git a/docs/kotlin_cn.md b/docs/kotlin_cn.md
index 7fb03bc8f4..0532326925 100644
--- a/docs/kotlin_cn.md
+++ b/docs/kotlin_cn.md
@@ -11,7 +11,7 @@
com.alibaba.fastjson2
fastjson2-kotlin
- 2.0.16
+ 2.0.17
```
@@ -19,7 +19,7 @@
```kotlin
dependencies {
- implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.16")
+ implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.17")
}
```
diff --git a/docs/kotlin_en.md b/docs/kotlin_en.md
index 1d278ea588..12fe1124fc 100644
--- a/docs/kotlin_en.md
+++ b/docs/kotlin_en.md
@@ -11,7 +11,7 @@ If your project uses `kotlin`, you can use the` Fastjson-Kotlin` module, and use
com.alibaba.fastjson2
fastjson2-kotlin
- 2.0.16
+ 2.0.17
```
@@ -19,7 +19,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.16")
+ implementation("com.alibaba.fastjson2:fastjson2-kotlin:2.0.17")
}
```
diff --git a/docs/spring_support_cn.md b/docs/spring_support_cn.md
index 24ccc1ae11..46388a6541 100644
--- a/docs/spring_support_cn.md
+++ b/docs/spring_support_cn.md
@@ -11,7 +11,7 @@ Fastjson2采用多module的结构设计,对SpringFramework等框架的支持
com.alibaba.fastjson2
fastjson2-extension
- 2.0.16
+ 2.0.17
```
@@ -19,7 +19,7 @@ Fastjson2采用多module的结构设计,对SpringFramework等框架的支持
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.17'
}
```
diff --git a/docs/spring_support_en.md b/docs/spring_support_en.md
index b6c86567c6..1846fe3775 100644
--- a/docs/spring_support_en.md
+++ b/docs/spring_support_en.md
@@ -12,7 +12,7 @@ independent in the `extension` dependency.
com.alibaba.fastjson2
fastjson2-extension
- 2.0.16
+ 2.0.17
```
@@ -20,7 +20,7 @@ independent in the `extension` dependency.
```groovy
dependencies {
- implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.16'
+ implementation 'com.alibaba.fastjson2:fastjson2-extension:2.0.17'
}
```
diff --git a/extension/pom.xml b/extension/pom.xml
index a02c50bb78..287111fff3 100644
--- a/extension/pom.xml
+++ b/extension/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/fastjson1-compatible/pom.xml b/fastjson1-compatible/pom.xml
index 1fc38c4979..52a9804423 100644
--- a/fastjson1-compatible/pom.xml
+++ b/fastjson1-compatible/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/kotlin/pom.xml b/kotlin/pom.xml
index 6539cb9f14..94e5fbee8a 100644
--- a/kotlin/pom.xml
+++ b/kotlin/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/pom.xml b/pom.xml
index cf1486fff0..681e0a2fa4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
${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 28b945d1a5..2d961f843f 100644
--- a/safemode-test/pom.xml
+++ b/safemode-test/pom.xml
@@ -6,7 +6,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/spring-test/pom.xml b/spring-test/pom.xml
index 59c61a3e45..d779a8e69a 100644
--- a/spring-test/pom.xml
+++ b/spring-test/pom.xml
@@ -5,7 +5,7 @@
com.alibaba.fastjson2
fastjson2-parent
- 2.0.17-SNAPSHOT
+ 2.0.17
../pom.xml
diff --git a/spring6test/pom.xml b/spring6test/pom.xml
index 9722eef026..e9f7b6b3cf 100644
--- a/spring6test/pom.xml
+++ b/spring6test/pom.xml
@@ -58,12 +58,12 @@
com.alibaba.fastjson2
fastjson2
- 2.0.17-SNAPSHOT
+ 2.0.17
com.alibaba.fastjson2
fastjson2-extension
- 2.0.17-SNAPSHOT
+ 2.0.17
org.springframework.boot