diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml
index e002a944..937df35d 100644
--- a/.gitee/ISSUE_TEMPLATE/bug.yml
+++ b/.gitee/ISSUE_TEMPLATE/bug.yml
@@ -7,7 +7,7 @@ body:
attributes:
label: 这个 Bug 是否已经存在:
options:
- - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.10.0,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues)
+ - label: 我确定已经把 MyBatis-Flex 升级到最新版本 v1.10.1,并已搜索过现有的问题 (https://gitee.com/mybatis-flex/mybatis-flex/issues)
required: true
- type: textarea
attributes:
diff --git a/changes.md b/changes.md
index e9233e2f..da35cb78 100644
--- a/changes.md
+++ b/changes.md
@@ -2,10 +2,15 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.10.1 20241112
+- 修复:代码生成器 在禁用Service接口生成时,serviceImpl去除Service接口
+- 修复:在使用 QueryColumn 的 ge 方法时, 大于等于会实际仅是大于的问题
+
+
## v1.10.0 20241104
- 新增:代码生成器添加 ColumnConfigFactory 配置的支持
-- 修复:修复由于 1.10.0 修复方法名称后导致代码生成器出错的问题
+- 修复:修复由于 1.9.9 修复方法名称后导致代码生成器出错的问题
- 优化:优化 unMappedColumnHandler 在 FlexGlobalConfig 的定义
diff --git a/docs/zh/changes.md b/docs/zh/changes.md
index e9233e2f..da35cb78 100644
--- a/docs/zh/changes.md
+++ b/docs/zh/changes.md
@@ -2,10 +2,15 @@
查看 [全部代码贡献者](/zh/intro/what-is-mybatisflex.html#贡献者)。
+## v1.10.1 20241112
+- 修复:代码生成器 在禁用Service接口生成时,serviceImpl去除Service接口
+- 修复:在使用 QueryColumn 的 ge 方法时, 大于等于会实际仅是大于的问题
+
+
## v1.10.0 20241104
- 新增:代码生成器添加 ColumnConfigFactory 配置的支持
-- 修复:修复由于 1.10.0 修复方法名称后导致代码生成器出错的问题
+- 修复:修复由于 1.9.9 修复方法名称后导致代码生成器出错的问题
- 优化:优化 unMappedColumnHandler 在 FlexGlobalConfig 的定义
diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md
index df900a75..40ee0068 100644
--- a/docs/zh/intro/getting-started.md
+++ b/docs/zh/intro/getting-started.md
@@ -53,7 +53,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.10.0
+ 1.10.1
com.mysql
@@ -81,7 +81,7 @@ VALUES (1, '张三', 18, '2020-01-11'),
com.mybatis-flex
mybatis-flex-spring-boot3-starter
- 1.10.0
+ 1.10.1
com.mysql
diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md
index a8e476d5..0918d396 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.10.0")
+ implementation("com.mybatis-flex:mybatis-flex-core:1.10.1")
}
```
@@ -18,7 +18,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-core:1.10.0'
+ implementation 'com.mybatis-flex:mybatis-flex-core:1.10.1'
}
```
@@ -28,7 +28,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring:1.10.0")
+ implementation("com.mybatis-flex:mybatis-flex-spring:1.10.1")
}
```
@@ -36,7 +36,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring:1.10.0'
+ implementation 'com.mybatis-flex:mybatis-flex-spring:1.10.1'
}
```
@@ -46,7 +46,7 @@ dependencies {
```kotlin
dependencies {
- implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.10.0")
+ implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.10.1")
}
```
@@ -54,7 +54,7 @@ dependencies {
```groovy
dependencies {
- implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.10.0'
+ implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.10.1'
}
```
@@ -70,7 +70,7 @@ dependencies {
```kotlin
dependencies {
- annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.10.0")
+ annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.10.1")
}
```
@@ -78,6 +78,6 @@ dependencies {
```groovy
dependencies {
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.10.0'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.10.1'
}
```
diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md
index 6a8e6ccd..21338119 100644
--- a/docs/zh/intro/maven.md
+++ b/docs/zh/intro/maven.md
@@ -12,12 +12,12 @@
com.mybatis-flex
mybatis-flex-core
- 1.10.0
+ 1.10.1
com.mybatis-flex
mybatis-flex-processor
- 1.10.0
+ 1.10.1
provided
```
@@ -28,12 +28,12 @@
com.mybatis-flex
mybatis-flex-spring
- 1.10.0
+ 1.10.1
com.mybatis-flex
mybatis-flex-processor
- 1.10.0
+ 1.10.1
provided
``````
@@ -44,12 +44,12 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.10.0
+ 1.10.1
com.mybatis-flex
mybatis-flex-processor
- 1.10.0
+ 1.10.1
provided
```
@@ -60,12 +60,12 @@
com.mybatis-flex
mybatis-flex-spring-boot3-starter
- 1.10.0
+ 1.10.1
com.mybatis-flex
mybatis-flex-processor
- 1.10.0
+ 1.10.1
provided
```
@@ -88,7 +88,7 @@
com.mybatis-flex
mybatis-flex-processor
- 1.10.0
+ 1.10.1
diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md
index 44386b18..2139bd45 100644
--- a/docs/zh/others/apt.md
+++ b/docs/zh/others/apt.md
@@ -248,7 +248,7 @@ pom.xml 添加 `annotationProcessorPaths` 配置,
```
dependencies {
...
- annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.10.0'
+ annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.10.1'
}
```
diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md
index f7d3b4e0..3cede211 100644
--- a/docs/zh/others/codegen.md
+++ b/docs/zh/others/codegen.md
@@ -21,7 +21,7 @@
com.mybatis-flex
mybatis-flex-codegen
- 1.10.0
+ 1.10.1
```
diff --git a/mybatis-flex-annotation/pom.xml b/mybatis-flex-annotation/pom.xml
index e51b717d..7fae96a1 100644
--- a/mybatis-flex-annotation/pom.xml
+++ b/mybatis-flex-annotation/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-codegen/pom.xml b/mybatis-flex-codegen/pom.xml
index 41f25b8f..57902d28 100644
--- a/mybatis-flex-codegen/pom.xml
+++ b/mybatis-flex-codegen/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
@@ -23,7 +23,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.10.0
+ 1.10.1
com.mybatis-flex
diff --git a/mybatis-flex-core/pom.xml b/mybatis-flex-core/pom.xml
index c146f898..9523b5bd 100644
--- a/mybatis-flex-core/pom.xml
+++ b/mybatis-flex-core/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
@@ -101,7 +101,7 @@
com.mybatis-flex
mybatis-flex-annotation
- 1.10.0
+ 1.10.1
compile
diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
index 344c43b8..1362c326 100644
--- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
+++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/FlexConsts.java
@@ -27,7 +27,7 @@ public class FlexConsts {
}
public static final String NAME = "MyBatis-Flex";
- public static final String VERSION = "1.10.0";
+ public static final String VERSION = "1.10.1";
public static final String SQL = "$$sql";
diff --git a/mybatis-flex-dependencies/pom.xml b/mybatis-flex-dependencies/pom.xml
index 7a43b0ee..5a2a4278 100644
--- a/mybatis-flex-dependencies/pom.xml
+++ b/mybatis-flex-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.mybatis-flex
mybatis-flex-dependencies
- 1.10.0
+ 1.10.1
pom
@@ -48,7 +48,7 @@
- 1.10.0
+ 1.10.1
diff --git a/mybatis-flex-processor/pom.xml b/mybatis-flex-processor/pom.xml
index 74883692..77a32b7c 100644
--- a/mybatis-flex-processor/pom.xml
+++ b/mybatis-flex-processor/pom.xml
@@ -5,13 +5,13 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
mybatis-flex-processor
jar
- 1.10.0
+ 1.10.1
@@ -23,7 +23,7 @@
com.mybatis-flex
mybatis-flex-annotation
- 1.10.0
+ 1.10.1
diff --git a/mybatis-flex-solon-plugin/pom.xml b/mybatis-flex-solon-plugin/pom.xml
index 317cfbab..4812cc57 100644
--- a/mybatis-flex-solon-plugin/pom.xml
+++ b/mybatis-flex-solon-plugin/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-spring-boot-starter/pom.xml b/mybatis-flex-spring-boot-starter/pom.xml
index 6b7486ef..a36ec8fb 100644
--- a/mybatis-flex-spring-boot-starter/pom.xml
+++ b/mybatis-flex-spring-boot-starter/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
@@ -23,7 +23,7 @@
com.mybatis-flex
mybatis-flex-spring
- 1.10.0
+ 1.10.1
@@ -104,7 +104,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.10.0
+ 1.10.1
diff --git a/mybatis-flex-spring-boot3-starter/pom.xml b/mybatis-flex-spring-boot3-starter/pom.xml
index eab3b911..06c24d8a 100644
--- a/mybatis-flex-spring-boot3-starter/pom.xml
+++ b/mybatis-flex-spring-boot3-starter/pom.xml
@@ -6,7 +6,7 @@
com.mybatis-flex
parent
- 1.10.0
+ 1.10.1
mybatis-flex-spring-boot3-starter
@@ -19,7 +19,7 @@
com.mybatis-flex
mybatis-flex-spring-boot-starter
- 1.10.0
+ 1.10.1
org.mybatis
diff --git a/mybatis-flex-spring/pom.xml b/mybatis-flex-spring/pom.xml
index 21041e8d..ef30dbc5 100644
--- a/mybatis-flex-spring/pom.xml
+++ b/mybatis-flex-spring/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
@@ -22,7 +22,7 @@
com.mybatis-flex
mybatis-flex-core
- 1.10.0
+ 1.10.1
diff --git a/mybatis-flex-test/mybatis-flex-native-test/pom.xml b/mybatis-flex-test/mybatis-flex-native-test/pom.xml
index 91ab568d..635e515a 100644
--- a/mybatis-flex-test/mybatis-flex-native-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-native-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-seata-test/pom.xml b/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
index eed6d790..be53d5c6 100644
--- a/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-seata-test/pom.xml
@@ -4,7 +4,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
index 0829d76a..eb424c52 100644
--- a/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-boot-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
index ccaad6b8..5431ece1 100644
--- a/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-cloud-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-test/mybatis-flex-spring-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
index 7bfc3fd9..0fffd37e 100644
--- a/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
+++ b/mybatis-flex-test/mybatis-flex-spring-test/pom.xml
@@ -5,7 +5,7 @@
mybatis-flex-test
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/mybatis-flex-test/pom.xml b/mybatis-flex-test/pom.xml
index 112de6b2..dd5e801c 100644
--- a/mybatis-flex-test/pom.xml
+++ b/mybatis-flex-test/pom.xml
@@ -5,7 +5,7 @@
parent
com.mybatis-flex
- 1.10.0
+ 1.10.1
4.0.0
diff --git a/pom.xml b/pom.xml
index d015462a..34e65162 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.mybatis-flex
parent
pom
- 1.10.0
+ 1.10.1
mybatis-flex
https://mybatis-flex.com
@@ -63,7 +63,7 @@
8
8
- 1.10.0
+ 1.10.1
3.5.16
2.1.2