Skip to content

Commit

Permalink
1.2.1 RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangrongfan committed Aug 29, 2018
1 parent 5447135 commit 1e13a2e
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ Mybatis SQL开发神器MybatisBoost,包含通用CrudMapper、Mybatis语法增
<dependency>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost-spring-boot-starter</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-all/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-core/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-lang/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-lang</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-limiter/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-limiter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-mapper/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-mapper</artifactId>
Expand Down
Expand Up @@ -23,7 +23,7 @@ public void replace(MetaObject metaObject, MappedStatement mappedStatement, Boun
StringBuilder builder = new StringBuilder(sql);
builder.append(" ON DUPLICATE KEY UPDATE ");
Arrays.stream(matcher.group(1).split(", "))
.forEach(it -> builder.append(it).append(" = ").append(it).append(", "));
.forEach(it -> builder.append(it).append(" = VALUES(").append(it).append("), "));
builder.setLength(builder.length() - 2);
metaObject.setValue("delegate.boundSql.sql", builder.toString());
}
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-metric/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-metric</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-spring-boot-autoconfigure/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-spring-boot-autoconfigure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-spring-boot-starter/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-spring-boot-starter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mybatis-boost-test/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>

<artifactId>mybatis-boost-test</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>cn.mybatisboost</groupId>
<artifactId>mybatis-boost</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<packaging>pom</packaging>

<name>MybatisBoost</name>
Expand Down Expand Up @@ -48,7 +48,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version>1.2.0</version>
<version>1.2.1</version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 1e13a2e

Please sign in to comment.