Skip to content

Commit

Permalink
3.3.9更新日志
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Sep 4, 2016
1 parent a5c7376 commit 46b77c8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Country代码:
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper</artifactId>
<version>3.3.7</version>
<version>3.3.9</version>
</dependency>
```

Expand All @@ -108,7 +108,19 @@ http://repo1.maven.org/maven2/javax/persistence/persistence-api/1.0/

##[更新日志](http://git.oschina.net/free/Mapper/blob/master/wiki/Changelog.md)

##最新版本3.3.8 - 2016-03-23
##最新版本3.3.9 - 2016-09-04

* 增加`selectByIds``deleteByIds`,用法见通用Mapper接口大全
* MBG插件支持`beginningDelimiter``endingDelimiter`
* MBG插件增加schema配置(catalog也可以用这个),会自动在表的注解名字前面加上`schema.tablename`
* MBG插件支持oracle获取注释,其他数据库可以尝试#114
* 根据**李领北**建议修改`Example`中的`propertyMap`#159
* [MyBatis Generator 1.3.4 扩展,可以设置 Mapper(Dao)后缀](http://blog.csdn.net/isea533/article/details/52430691)
* 增加对MBG1.3.4的支持
* `Example`中的`andIn``andNotIn`中的参数`Collection`改为`Iterable`
* 解决驼峰转下划线的错误,感谢 ptma, piggsoft 和 liufor 的PR

###3.3.8 - 2016-03-23

* `Example``andIn``andNotIn`方法参数改为`Collection` #109
* 解决ResultMapping.Builder3.2.6版本新增`lazy`方法导致无法兼容3.2.4~3.2.5版本的问题,仍然兼容3.2.4+
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>tk.mybatis</groupId>
<artifactId>mapper</artifactId>
<version>3.3.9-SNAPSHOT</version>
<version>3.3.9</version>
<packaging>jar</packaging>

<name>mapper</name>
Expand Down
12 changes: 12 additions & 0 deletions wiki/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
#更新日志

##3.3.9 - 2016-09-04

* 增加`selectByIds``deleteByIds`,用法见通用Mapper接口大全
* 根据**李领北**建议修改`Example`中的`propertyMap`#159
* `Example`中的`andIn``andNotIn`中的参数`Collection`改为`Iterable`
* 解决驼峰转下划线的错误,感谢 ptma, piggsoft 和 liufor 的PR
* 增加对MBG1.3.4的支持
* MBG插件支持`beginningDelimiter``endingDelimiter`
* MBG插件增加schema配置(catalog也可以用这个),会自动在表的注解名字前面加上`schema.tablename`
* MBG插件支持oracle获取注释,其他数据库可以尝试#114
* MBG扩展,详情看[MyBatis Generator 1.3.4 扩展,可以设置 Mapper(Dao)后缀](http://blog.csdn.net/isea533/article/details/52430691)

##3.3.8 - 2016-03-23

* `Example``andIn``andNotIn`方法参数改为`Collection` #109
Expand Down

0 comments on commit 46b77c8

Please sign in to comment.