Skip to content

Commit

Permalink
feat: 5.0.7 预发发布
Browse files Browse the repository at this point in the history
feat: 优化参数替换问题
  • Loading branch information
[email protected] committed Apr 19, 2023
1 parent 66331b4 commit b7c7667
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mybatis-agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ allprojects {


group 'com.plugins.mybatislog.agent'
version '1.0.25'
version '1.0.26'

java {
sourceCompatibility = "1.8"
Expand Down
Binary file removed mybatis-agent/libs/mybatis-plugin-1.0.4.jar
Binary file not shown.
Binary file added mybatis-agent/libs/mybatis-plugin-1.0.5.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion mybatis-idea-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {
}

group 'com.plugins.mybaitslog.idea.plugin'
version '5.0.7.3'
version '5.0.7.5'

dependencies {
compileOnly 'org.jetbrains:annotations:24.0.1'
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ private static String getJarPathByStartWith() {
if ("lib".equals(listFile.getName())) {
final File[] fileslib = listFile.listFiles();
for (File file : fileslib) {
if ("mybatis-agent-1.0.25-all.jar".equals(file.getName())) {
//优化非写死
if ("mybatis-agent-1.0.26-all.jar".equals(file.getName())) {
return file.toPath().toString();
}
}
Expand Down
2 changes: 1 addition & 1 deletion mybatis-idea-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<vendor email="[email protected]" url="https://github.com/Link-Kou/intellij-mybaitslog">linkkou</vendor>

<!-- 插件版本 -->
<version>5.0.7.3</version>
<version>5.0.7.5</version>
<!-- please see https://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="201"/>
<!-- 插件的描述 -->
Expand Down
2 changes: 1 addition & 1 deletion mybatis-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
}

group 'com.plugins.mybatislog.plugin'
version '1.0.4'
version '1.0.5'

java {
sourceCompatibility = "1.8"
Expand Down

0 comments on commit b7c7667

Please sign in to comment.