From 23236e6ec2f6b80f1a0aafa1be4ff06f1640b677 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Fri, 26 Sep 2025 12:12:04 +0800 Subject: [PATCH] build: v1.11.3 release (^.^)YYa!! --- docs/zh/intro/getting-started.md | 4 ++-- docs/zh/intro/gradle.md | 20 ++++++++--------- docs/zh/intro/maven.md | 22 +++++++++---------- docs/zh/others/apt.md | 2 +- docs/zh/others/codegen.md | 2 +- .../java/com/mybatisflex/core/FlexConsts.java | 2 +- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index 8f8a3627..269ec4a0 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.11.1 + 1.11.3 com.mysql @@ -81,7 +81,7 @@ VALUES (1, '张三', 18, '2020-01-11'), com.mybatis-flex mybatis-flex-spring-boot3-starter - 1.11.1 + 1.11.3 com.mysql diff --git a/docs/zh/intro/gradle.md b/docs/zh/intro/gradle.md index ac4a644e..821e8676 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.11.1") + implementation("com.mybatis-flex:mybatis-flex-core:1.11.3") } ``` @@ -18,7 +18,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-core:1.11.1' + implementation 'com.mybatis-flex:mybatis-flex-core:1.11.3' } ``` @@ -28,7 +28,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring:1.11.1") + implementation("com.mybatis-flex:mybatis-flex-spring:1.11.3") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring:1.11.1' + implementation 'com.mybatis-flex:mybatis-flex-spring:1.11.3' } ``` @@ -46,7 +46,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.11.1") + implementation("com.mybatis-flex:mybatis-flex-spring-boot-starter:1.11.3") } ``` @@ -54,7 +54,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.11.1' + implementation 'com.mybatis-flex:mybatis-flex-spring-boot-starter:1.11.3' } ``` @@ -65,7 +65,7 @@ dependencies { ```kotlin dependencies { - implementation("com.mybatis-flex:mybatis-flex-solon-plugin:1.11.1") + implementation("com.mybatis-flex:mybatis-flex-solon-plugin:1.11.3") } ``` @@ -73,7 +73,7 @@ dependencies { ```groovy dependencies { - implementation 'com.mybatis-flex:mybatis-flex-solon-plugin:1.11.1' + implementation 'com.mybatis-flex:mybatis-flex-solon-plugin:1.11.3' } ``` @@ -91,7 +91,7 @@ dependencies { ```kotlin dependencies { - annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.11.1") + annotationProcessor("com.mybatis-flex:mybatis-flex-processor:1.11.3") } ``` @@ -99,6 +99,6 @@ dependencies { ```groovy dependencies { - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.11.1' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.11.3' } ``` diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index 2d61e982..520093f1 100644 --- a/docs/zh/intro/maven.md +++ b/docs/zh/intro/maven.md @@ -12,12 +12,12 @@ com.mybatis-flex mybatis-flex-core - 1.11.1 + 1.11.3 com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.11.1 + 1.11.3 com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.11.1 + 1.11.3 com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 provided ``` @@ -60,12 +60,12 @@ com.mybatis-flex mybatis-flex-spring-boot3-starter - 1.11.1 + 1.11.3 com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 provided ``` @@ -76,12 +76,12 @@ com.mybatis-flex mybatis-flex-solon-plugin - 1.11.1 + 1.11.3 com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 provided ``` @@ -104,7 +104,7 @@ com.mybatis-flex mybatis-flex-processor - 1.11.1 + 1.11.3 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index 717a6a56..5ce8a5be 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.11.1' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.11.3' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index 75bb9e6c..b9234f7e 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -21,7 +21,7 @@ com.mybatis-flex mybatis-flex-codegen - 1.11.1 + 1.11.3 ``` 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 bebe62fa..0a87aea4 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.11.1"; + public static final String VERSION = "1.11.3"; public static final String SQL = "$$sql";