diff --git a/README.md b/README.md index 2a5e4480..7f6ca51b 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Drivers for Go's sql package which currently support database/sql includes: ## Changelog +* **v0.1.6** : Added conversion interface support; added struct derive support; added single mapping support * **v0.1.5** : Added multi threads support; added Sql() function for struct query; Get function changed return inteface; MakeSession and Create are instead with NewSession and NewEngine. * **v0.1.4** : Added simple cascade load support; added more data type supports. * **v0.1.3** : Find function now supports both slice and map; Add Table function for multi tables and temperory tables support diff --git a/README_CN.md b/README_CN.md index becbdee3..12cecfbe 100644 --- a/README_CN.md +++ b/README_CN.md @@ -16,6 +16,7 @@ xorm是一个Go语言的ORM库. 通过它可以使数据库操作非常简便。 ## 更新日志 +* **v0.1.6** : 新增Conversion,支持自定义类型到数据库类型的转换;新增查询结构体自动检测匿名成员支持;新增单向映射支持; * **v0.1.5** : 新增对多线程的支持;新增Sql()函数;支持任意sql语句的struct查询;Get函数返回值变动;MakeSession和Create函数被NewSession和NewEngine函数替代; * **v0.1.4** : Get函数和Find函数新增简单的级联载入功能;对更多的数据库类型支持。 * **v0.1.3** : Find函数现在支持传入Slice或者Map,当传入Map时,key为id;新增Table函数以为多表和临时表进行支持。