diff --git a/changes.md b/changes.md
index e3eca0f5..31b02028 100644
--- a/changes.md
+++ b/changes.md
@@ -3,6 +3,11 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.6.3 20230901:
+- 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题
+
+
+
## v1.6.2 20230831:
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
diff --git a/docs/zh/changes.md b/docs/zh/changes.md
index e3eca0f5..31b02028 100644
--- a/docs/zh/changes.md
+++ b/docs/zh/changes.md
@@ -3,6 +3,11 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.6.3 20230901:
+- 修复:紧急修复 v1.6.2 分页查询无法查询数据列表的问题
+
+
+
## v1.6.2 20230831:
- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md
index 02d20b08..b4baa996 100644
--- a/docs/zh/intro/getting-started.md
+++ b/docs/zh/intro/getting-started.md
@@ -62,7 +62,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.6.2
+ 1.6.3
com.mysql
diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md
index 7d84072f..b8997588 100644
--- a/docs/zh/intro/gradle.md
+++ b/docs/zh/intro/gradle.md
@@ -10,7 +10,7 @@
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-core:1.6.2")
+ implementation("com.mybatis-flex:mybatis-flex-core:1.6.3")
}
```
@@ -18,7 +18,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-core:1.6.2'
+ implementation 'com.mybatis-flex:mybatis-flex-core:1.6.3'
}
```
@@ -28,7 +28,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring:1.6.2")
+ implementation("com.mybatis-flex:mybatis-flex-spring:1.6.3")
}
```
@@ -36,7 +36,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.2'
+ implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.3'
}
```
@@ -46,7 +46,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2")
+ implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3")
}
```
@@ -54,7 +54,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2'
+ implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.3'
}
```
@@ -70,7 +70,7 @@ dependencies {
```kotlin
dependencies {
- annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.2")
+ annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.3")
}
```
@@ -78,6 +78,6 @@ dependencies {
```groovy
dependencies {
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.3'
}
```
diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md
index 4d43c2e8..8e746be2 100644
--- a/docs/zh/intro/maven.md
+++ b/docs/zh/intro/maven.md
@@ -12,12 +12,12 @@
com.mybatis-flex
mybatis-flex-core
- 1.6.2
+ 1.6.3
com.mybatis-flex
mybatis-flex-processor
- 1.6.2
+ 1.6.3
provided
```
@@ -28,12 +28,12 @@
com.mybatis-flex
mybatis-flex-spring
- 1.6.2
+ 1.6.3
com.mybatis-flex
mybatis-flex-processor
- 1.6.2
+ 1.6.3
provided
``````
@@ -44,12 +44,12 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.6.2
+ 1.6.3
com.mybatis-flex
mybatis-flex-processor
- 1.6.2
+ 1.6.3
provided
```
@@ -72,7 +72,7 @@
com.mybatis-flex
mybatis-flex-processor
- 1.6.2
+ 1.6.3
diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md
index 5a46223d..1bbefc5f 100644
--- a/docs/zh/others/apt.md
+++ b/docs/zh/others/apt.md
@@ -220,7 +220,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
```
dependencies {
...
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.3'
}
```
diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md
index 60b4138e..82e20ace 100644
--- a/docs/zh/others/codegen.md
+++ b/docs/zh/others/codegen.md
@@ -10,7 +10,7 @@
com.mybatis-flex
mybatis-flex-codegen
- 1.6.2
+ 1.6.3
```
diff --git a/pom.xml b/pom.xml
index 817968f5..fa07b158 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.mybatis-flex
parent
pom
- 1.6.2
+ 1.6.3
mybatis-flex
https://mybatis-flex.com
@@ -55,7 +55,7 @@
8
8
- 1.6.2
+ 1.6.3
3.5.13
2.1.0