This commit is contained in:
Lunny Xiao 2018-04-13 17:45:25 +08:00
parent 636ccefbc7
commit fc1b13e0d8
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
3 changed files with 7 additions and 1 deletions

View File

@ -52,6 +52,9 @@ Drivers for Go's sql package which currently support database/sql includes:
# Changelog
* **v0.6.6**
* Some bugs fixed
* **v0.6.5**
* Postgres schema support
* vgo support

View File

@ -54,6 +54,9 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
## 更新日志
* **v0.6.6**
* 修正部分Bug
* **v0.6.5**
* 通过 engine.SetSchema 来支持 schema当前仅支持Postgres
* vgo 支持

View File

@ -17,7 +17,7 @@ import (
const (
// Version show the xorm's version
Version string = "0.6.5.0410"
Version string = "0.6.6.0413"
)
func regDrvsNDialects() bool {