diff --git a/README.md b/README.md
index 093f1a0f7..2443e4ef1 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
+# xorm
+
[中文](https://github.com/go-xorm/xorm/blob/master/README_CN.md)
Xorm is a simple and powerful ORM for Go.
@@ -6,7 +8,7 @@ Xorm is a simple and powerful ORM for Go.
[![](https://goreportcard.com/badge/github.com/go-xorm/xorm)](https://goreportcard.com/report/github.com/go-xorm/xorm)
[![Join the chat at https://img.shields.io/discord/323460943201959939.svg](https://img.shields.io/discord/323460943201959939.svg)](https://discord.gg/HuR2CF3)
-# Features
+## Features
* Struct <-> Table Mapping Support
@@ -32,7 +34,7 @@ Xorm is a simple and powerful ORM for Go.
* Postgres schema support
-# Drivers Support
+## Drivers Support
Drivers for Go's sql package which currently support database/sql includes:
@@ -50,48 +52,17 @@ Drivers for Go's sql package which currently support database/sql includes:
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (experiment)
-# Changelog
-
-* **v0.6.6**
- * Some bugs fixed
-
-* **v0.6.5**
- * Postgres schema support
- * vgo support
- * Add FindAndCount
- * Database special params support via NewEngineWithParams
- * Some bugs fixed
-
-* **v0.6.4**
- * Automatical Read/Write seperatelly
- * Query/QueryString/QueryInterface and action with Where/And
- * Get support non-struct variables
- * BufferSize on Iterate
- * fix some other bugs.
-
-* **v0.6.3**
- * merge tests to main project
- * add `Exist` function
- * add `SumInt` function
- * Mysql now support read and create column comment.
- * fix time related bugs.
- * fix some other bugs.
-
-[More changes ...](https://github.com/go-xorm/manual-en-US/tree/master/chapter-16)
-
-# Installation
+## Installation
go get github.com/go-xorm/xorm
-# Documents
+## Documents
* [Manual](http://xorm.io/docs)
* [GoDoc](http://godoc.org/github.com/go-xorm/xorm)
-* [GoWalker](http://gowalker.org/github.com/go-xorm/xorm)
-
-# Quick Start
+## Quick Start
* Create Engine
@@ -387,7 +358,52 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern
return session.Commit()
```
-# Cases
+## Contributing
+
+If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md). And we also provide [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm) to discuss.
+
+## Credits
+
+### Contributors
+
+This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
+
+
+### Backers
+
+Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/xorm#backer)]
+
+
+
+### Sponsors
+
+Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/xorm#sponsor)]
+
+## Changelog
+
+* **v0.7.0**
+ * Some bugs fixed
+
+* **v0.6.6**
+ * Some bugs fixed
+
+* **v0.6.5**
+ * Postgres schema support
+ * vgo support
+ * Add FindAndCount
+ * Database special params support via NewEngineWithParams
+ * Some bugs fixed
+
+* **v0.6.4**
+ * Automatical Read/Write seperatelly
+ * Query/QueryString/QueryInterface and action with Where/And
+ * Get support non-struct variables
+ * BufferSize on Iterate
+ * fix some other bugs.
+
+[More changes ...](https://github.com/go-xorm/manual-en-US/tree/master/chapter-16)
+
+## Cases
* [studygolang](http://studygolang.com/) - [github.com/studygolang/studygolang](https://github.com/studygolang/studygolang)
@@ -423,15 +439,6 @@ return session.Commit()
* [go-blog](http://wangcheng.me) - [github.com/easykoo/go-blog](https://github.com/easykoo/go-blog)
-# Discuss
-
-Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm)
-
-# Contributing
-
-If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
-
-# LICENSE
+## LICENSE
- BSD License
- [http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)
+BSD License [http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)
\ No newline at end of file
diff --git a/README_CN.md b/README_CN.md
index 74cce5b47..c51cec05a 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -52,36 +52,6 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (试验性支持)
-## 更新日志
-
-* **v0.6.6**
- * 修正部分Bug
-
-* **v0.6.5**
- * 通过 engine.SetSchema 来支持 schema,当前仅支持Postgres
- * vgo 支持
- * 新增 `FindAndCount` 函数
- * 通过 `NewEngineWithParams` 支持数据库特别参数
- * 修正部分Bug
-
-* **v0.6.4**
- * 自动读写分离支持
- * Query/QueryString/QueryInterface 支持与 Where/And 合用
- * `Get` 支持获取非结构体变量
- * `Iterate` 支持 `BufferSize`
- * 修正部分Bug
-
-* **v0.6.3**
- * 合并单元测试到主工程
- * 新增 `Exist` 方法
- * 新增 `SumInt` 方法
- * Mysql新增读取和创建字段注释支持
- * 新增 `SetConnMaxLifetime` 方法
- * 修正了时间相关的Bug
- * 修复了一些其它Bug
-
-[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
-
## 安装
go get github.com/go-xorm/xorm
@@ -390,6 +360,27 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern
return session.Commit()
```
+## 贡献
+
+如果您也想为Xorm贡献您的力量,请查看 [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)。您也可以加入QQ群 280360085 技术帮助和讨论。
+
+## Credits
+
+### Contributors
+
+感谢所有的贡献者. [[Contribute](CONTRIBUTING.md)].
+
+
+### Backers
+
+感谢我们所有的 backers! 🙏 [[成为 backer](https://opencollective.com/xorm#backer)]
+
+
+
+### Sponsors
+
+成为 sponsor 来支持 xorm。您的 logo 将会被显示并被链接到您的网站。 [[成为 sponsor](https://opencollective.com/xorm#sponsor)]
+
# 案例
* [Go语言中文网](http://studygolang.com/) - [github.com/studygolang/studygolang](https://github.com/studygolang/studygolang)
@@ -424,13 +415,30 @@ return session.Commit()
* [go-blog](http://wangcheng.me) - [github.com/easykoo/go-blog](https://github.com/easykoo/go-blog)
-## 讨论
-请加入QQ群:280360085 进行讨论。
+## 更新日志
+
+* **v0.7.0**
+ * 修正部分Bug
-## 贡献
+* **v0.6.6**
+ * 修正部分Bug
-如果您也想为Xorm贡献您的力量,请查看 [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
+* **v0.6.5**
+ * 通过 engine.SetSchema 来支持 schema,当前仅支持Postgres
+ * vgo 支持
+ * 新增 `FindAndCount` 函数
+ * 通过 `NewEngineWithParams` 支持数据库特别参数
+ * 修正部分Bug
+
+* **v0.6.4**
+ * 自动读写分离支持
+ * Query/QueryString/QueryInterface 支持与 Where/And 合用
+ * `Get` 支持获取非结构体变量
+ * `Iterate` 支持 `BufferSize`
+ * 修正部分Bug
+
+[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
## LICENSE
diff --git a/xorm.go b/xorm.go
index d46370b65..13d0951ba 100644
--- a/xorm.go
+++ b/xorm.go
@@ -17,7 +17,7 @@ import (
const (
// Version show the xorm's version
- Version string = "0.6.6.0429"
+ Version string = "0.7.0.0504"
)
func regDrvsNDialects() bool {