diff --git a/changes.md b/changes.md
index db3a5d07..e3eca0f5 100644
--- a/changes.md
+++ b/changes.md
@@ -3,6 +3,22 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.6.2 20230831:
+- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
+- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
+- 优化:代码生成器的 Builder 缺少的字段构建,感谢 @Suomm
+- 修复:FlexMapWrapper 在开启 useCamelCaseMapping 时的一些错误问题
+- 修复:无法配置自定义 EnumTypeHandler 的问题 #I7WNQQ
+- 修复:自动映射无法对 List 进行自动忽略的问题 #I7X7G7 #I7XBQS
+- 修复:实体类在不同包名下,无法初始化全部 TableDefs 的问题,感谢 @hezhijie
+- 文档:优化多租户的忽略租户条件的相关文档
+- 文档:修改 QueryWrapper 的 SQL 示例错误
+- 文档:添加 select .. as 的使用注意事项
+- 文档:优化多数据源的示例代码错误的问题,感谢 @CrazyAirhead
+- 文档:修改 mybatis-flex-dependencies/pom.xml 中 groupId 拼写错误,感谢 @chaosforever
+
+
+
## v1.6.1 20230827:
- 新增:添加 QueryWrapper.create(entity,SqlOperators) 支持通过 Entity 转换为 QueryWrapper
- 优化:移动 SqlConnector 的包名
diff --git a/docs/zh/changes.md b/docs/zh/changes.md
index db3a5d07..e3eca0f5 100644
--- a/docs/zh/changes.md
+++ b/docs/zh/changes.md
@@ -3,6 +3,22 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.6.2 20230831:
+- 新增:添加一个 mysql 函数 GROUP_CONCAT,感谢 @shen_jun_feng
+- 优化:优化 TableDefs 的多一次判断可能影响性能的问题
+- 优化:代码生成器的 Builder 缺少的字段构建,感谢 @Suomm
+- 修复:FlexMapWrapper 在开启 useCamelCaseMapping 时的一些错误问题
+- 修复:无法配置自定义 EnumTypeHandler 的问题 #I7WNQQ
+- 修复:自动映射无法对 List 进行自动忽略的问题 #I7X7G7 #I7XBQS
+- 修复:实体类在不同包名下,无法初始化全部 TableDefs 的问题,感谢 @hezhijie
+- 文档:优化多租户的忽略租户条件的相关文档
+- 文档:修改 QueryWrapper 的 SQL 示例错误
+- 文档:添加 select .. as 的使用注意事项
+- 文档:优化多数据源的示例代码错误的问题,感谢 @CrazyAirhead
+- 文档:修改 mybatis-flex-dependencies/pom.xml 中 groupId 拼写错误,感谢 @chaosforever
+
+
+
## v1.6.1 20230827:
- 新增:添加 QueryWrapper.create(entity,SqlOperators) 支持通过 Entity 转换为 QueryWrapper
- 优化:移动 SqlConnector 的包名
diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md
index 8b6927a4..02d20b08 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.1
+ 1.6.2
com.mysql
diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md
index 557fc148..7d84072f 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.1")
+ implementation("com.mybatis-flex:mybatis-flex-core:1.6.2")
}
```
@@ -18,7 +18,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-core:1.6.1'
+ implementation 'com.mybatis-flex:mybatis-flex-core:1.6.2'
}
```
@@ -28,7 +28,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring:1.6.1")
+ implementation("com.mybatis-flex:mybatis-flex-spring:1.6.2")
}
```
@@ -36,7 +36,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.1'
+ implementation 'com.mybatis-flex:mybatis-flex-spring:1.6.2'
}
```
@@ -46,7 +46,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.1")
+ implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2")
}
```
@@ -54,7 +54,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.1'
+ implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.6.2'
}
```
@@ -70,7 +70,7 @@ dependencies {
```kotlin
dependencies {
- annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.1")
+ annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.6.2")
}
```
@@ -78,6 +78,6 @@ dependencies {
```groovy
dependencies {
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.1'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
}
```
diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md
index 02632b5e..4d43c2e8 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.1
+ 1.6.2
com.mybatis-flex
mybatis-flex-processor
- 1.6.1
+ 1.6.2
provided
```
@@ -28,12 +28,12 @@
com.mybatis-flex
mybatis-flex-spring
- 1.6.1
+ 1.6.2
com.mybatis-flex
mybatis-flex-processor
- 1.6.1
+ 1.6.2
provided
``````
@@ -44,12 +44,12 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.6.1
+ 1.6.2
com.mybatis-flex
mybatis-flex-processor
- 1.6.1
+ 1.6.2
provided
```
@@ -72,7 +72,7 @@
com.mybatis-flex
mybatis-flex-processor
- 1.6.1
+ 1.6.2
diff --git a/docs/zh/intro/parts/contributors.md b/docs/zh/intro/parts/contributors.md
index 4f66882b..c9d7812f 100644
--- a/docs/zh/intro/parts/contributors.md
+++ b/docs/zh/intro/parts/contributors.md
@@ -4,17 +4,18 @@
|卡莫sama|lhzsdnu|西东|pengpeng|庄佳彬|
|Font_C|笨小孩|CloudPlayer|snow|Jerry|
|草语|Jerry_Zheng|wujl|piggsoft|赤兮丷|
-|liibang|cainiao3853|黄沐鸿|loong0306|yangs|
-|barql|菜鸟3853|Robot.L|落羽er|英雄路|
-|tan90|BQ60ziOxlFI0R0|淡定|qixy|font-C|
-|欢乐码农|yuanbaolong|zhijieqing|2han9wen71an|Shark|
-|庄佳彬|hans|zhongyong|锟斤拷|bygkn|
-|大周|Saoforest|yang_zzu|dgmico|Ikko Eltociear Ashimine|
-|XiaoLin|锁力|阿志同学|玩具猫|chenjh3|
-|chenjian835|duxlei|meng.liu3|yaochen4|zhy_black|
-|豌豆粉|ζั͡ ั͡ ั͡ ั͡Wm|18007559437|陈国正|gongzhongqiang|
-|luy|凌尘|乌鸦笑猪黑|EafonYoung|Alex|
-|wnp|MyronLi|Pioneer-Sun|norkts|Q_Alex|
-|aqnghu|wlf|winnerself|她出去赚钱了|张春根|
-|XiaoLin|疾浪|xinjump|sppan|时间淡忘一切|
+|liibang|cainiao3853|黄沐鸿|barql|loong0306|
+|yangs|菜鸟3853|Robot.L|落羽er|沈君锋|
+|英雄路|tan90|BQ60ziOxlFI0R0|淡定|qixy|
+|font-C|大周|yuanbaolong|zhijieqing|2han9wen71an|
+|欢乐码农|bygkn|Shark|hans|zhongyong|
+|锟斤拷|庄佳彬|Saoforest|XiaoLin|dgmico|
+|yang_zzu|Ikko Eltociear Ashimine|锁力|chenjh3|阿志同学|
+|玩具猫|chenjian835|duxlei|meng.liu3|yaochen4|
+|zhy_black|豌豆粉|ζั͡ ั͡ ั͡ ั͡Wm|18007559437|陈国正|
+|凌尘|luy|gongzhongqiang|乌鸦笑猪黑|EafonYoung|
+|Alex|wnp|MyronLi|Pioneer-Sun|norkts|
+|Q_Alex|wlf|aqnghu|winnerself|CrazyAirhead|
+|她出去赚钱了|XiaoLin|张春根|疾浪|xinjump|
+|sppan|时间淡忘一切|
diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md
index 19035547..43605a8a 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.1'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.6.2'
}
```
diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md
index 6add0a0c..60b4138e 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.1
+ 1.6.2
```
diff --git a/pom.xml b/pom.xml
index 99ba8ff9..817968f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.mybatis-flex
parent
pom
- 1.6.1
+ 1.6.2
mybatis-flex
https://mybatis-flex.com
@@ -55,7 +55,7 @@
8
8
- 1.6.1
+ 1.6.2
3.5.13
2.1.0