From 823dc259bf4c0e3e72aefa6dc407df5f3af84278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=80=E6=BA=90=E6=B5=B7=E5=93=A5?= Date: Tue, 6 Jun 2023 15:53:36 +0800 Subject: [PATCH] v1.3.5 release (^.^)YYa!! --- docs/zh/intro/getting-started.md | 6 +++--- docs/zh/intro/maven.md | 14 +++++++------- docs/zh/others/apt.md | 2 +- docs/zh/others/codegen.md | 2 +- mybatis-flex-annotation/pom.xml | 2 +- mybatis-flex-codegen/pom.xml | 4 ++-- mybatis-flex-core/pom.xml | 6 +++--- .../main/java/com/mybatisflex/core/FlexConsts.java | 2 +- mybatis-flex-processor/pom.xml | 4 ++-- mybatis-flex-solon-plugin/pom.xml | 4 ++-- mybatis-flex-spring-boot-starter/pom.xml | 4 ++-- mybatis-flex-spring/pom.xml | 4 ++-- mybatis-flex-test/mybatis-flex-native-test/pom.xml | 4 ++-- .../mybatis-flex-spring-boot-test/pom.xml | 4 ++-- mybatis-flex-test/mybatis-flex-spring-test/pom.xml | 6 +++--- mybatis-flex-test/pom.xml | 4 ++-- pom.xml | 2 +- 17 files changed, 37 insertions(+), 37 deletions(-) diff --git a/docs/zh/intro/getting-started.md b/docs/zh/intro/getting-started.md index 0f71dcaf..213b1b3c 100644 --- a/docs/zh/intro/getting-started.md +++ b/docs/zh/intro/getting-started.md @@ -27,12 +27,12 @@ Maven示例: com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 provided ``` @@ -46,7 +46,7 @@ Gradle示例: ```groovy // file: build.gradle ext { - mybatis_flex_version = '1.3.4' + mybatis_flex_version = '1.3.5' } dependencies { implementation("com.mybatis-flex:mybatis-flex-core:${mybatis_flex_version}") diff --git a/docs/zh/intro/maven.md b/docs/zh/intro/maven.md index cb2bdc64..1b398ab4 100644 --- a/docs/zh/intro/maven.md +++ b/docs/zh/intro/maven.md @@ -12,12 +12,12 @@ com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 provided ``` @@ -28,12 +28,12 @@ com.mybatis-flex mybatis-flex-spring - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 provided `````` @@ -44,12 +44,12 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 provided ``` @@ -70,7 +70,7 @@ com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 diff --git a/docs/zh/others/apt.md b/docs/zh/others/apt.md index 3050ee9d..7b03fa46 100644 --- a/docs/zh/others/apt.md +++ b/docs/zh/others/apt.md @@ -179,7 +179,7 @@ processor.baseMapperClass=com.domain.mapper.MyBaseMapper ``` dependencies { ... - annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.3.4' + annotationProcessor 'com.mybatis-flex:mybatis-flex-processor:1.3.5' } ``` diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index e0bb58d6..38ee1077 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -10,7 +10,7 @@ com.mybatis-flex mybatis-flex-codegen - 1.3.4 + 1.3.5 ``` diff --git a/mybatis-flex-annotation/pom.xml b/mybatis-flex-annotation/pom.xml index 4adacaf3..8cc99482 100644 --- a/mybatis-flex-annotation/pom.xml +++ b/mybatis-flex-annotation/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 diff --git a/mybatis-flex-codegen/pom.xml b/mybatis-flex-codegen/pom.xml index 61d6c263..c4a85cda 100644 --- a/mybatis-flex-codegen/pom.xml +++ b/mybatis-flex-codegen/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -27,7 +27,7 @@ com.mybatis-flex mybatis-flex-spring - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-core/pom.xml b/mybatis-flex-core/pom.xml index 528a8469..836e8b05 100644 --- a/mybatis-flex-core/pom.xml +++ b/mybatis-flex-core/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -22,13 +22,13 @@ com.mybatis-flex mybatis-flex-annotation - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 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 bad31c1b..ad1827aa 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 @@ -23,7 +23,7 @@ public class FlexConsts { private FlexConsts() {} public static final String NAME = "MyBatis-Flex"; - public static final String VERSION = "1.3.4"; + public static final String VERSION = "1.3.5"; public static final String DEFAULT_PRIMARY_FIELD = "id"; diff --git a/mybatis-flex-processor/pom.xml b/mybatis-flex-processor/pom.xml index fb9dd229..13ebf693 100644 --- a/mybatis-flex-processor/pom.xml +++ b/mybatis-flex-processor/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -20,7 +20,7 @@ com.mybatis-flex mybatis-flex-annotation - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-solon-plugin/pom.xml b/mybatis-flex-solon-plugin/pom.xml index 2f4ea5ec..8c4f75d4 100644 --- a/mybatis-flex-solon-plugin/pom.xml +++ b/mybatis-flex-solon-plugin/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -21,7 +21,7 @@ com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-spring-boot-starter/pom.xml b/mybatis-flex-spring-boot-starter/pom.xml index 28affc54..6b38300d 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.3.4 + 1.3.5 4.0.0 @@ -21,7 +21,7 @@ com.mybatis-flex mybatis-flex-spring - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-spring/pom.xml b/mybatis-flex-spring/pom.xml index c919b577..3cbcbc6c 100644 --- a/mybatis-flex-spring/pom.xml +++ b/mybatis-flex-spring/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -20,7 +20,7 @@ com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-test/mybatis-flex-native-test/pom.xml b/mybatis-flex-test/mybatis-flex-native-test/pom.xml index a404082e..b454b684 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.3.4 + 1.3.5 4.0.0 @@ -20,7 +20,7 @@ com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 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 ed6bd4b4..fe496067 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.3.4 + 1.3.5 4.0.0 @@ -21,7 +21,7 @@ com.mybatis-flex mybatis-flex-spring-boot-starter - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-test/mybatis-flex-spring-test/pom.xml b/mybatis-flex-test/mybatis-flex-spring-test/pom.xml index ae60b0e3..1d5211cf 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.3.4 + 1.3.5 4.0.0 @@ -20,13 +20,13 @@ com.mybatis-flex mybatis-flex-core - 1.3.4 + 1.3.5 com.mybatis-flex mybatis-flex-spring - 1.3.4 + 1.3.5 diff --git a/mybatis-flex-test/pom.xml b/mybatis-flex-test/pom.xml index c288d25b..98a4f4a1 100644 --- a/mybatis-flex-test/pom.xml +++ b/mybatis-flex-test/pom.xml @@ -5,7 +5,7 @@ parent com.mybatis-flex - 1.3.4 + 1.3.5 4.0.0 @@ -59,7 +59,7 @@ com.mybatis-flex mybatis-flex-processor - 1.3.4 + 1.3.5 diff --git a/pom.xml b/pom.xml index e710e853..06dfe533 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.mybatis-flex parent pom - 1.3.4 + 1.3.5 mybatis-flex https://mybatis-flex.com