From 4df762f350aec110f57e5a6c56cfa424be3ae16e Mon Sep 17 00:00:00 2001 From: James Muranga Date: Tue, 15 Apr 2014 15:09:20 +0300 Subject: [PATCH 1/3] Fixing typo in readme.md schema --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed22a941..66bf87a6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Xorm is a simple and powerful ORM for Go. * Both ORM and raw SQL operation Support -* Sync database sechmea Support +* Sync database schema Support * Query Cache speed up @@ -119,4 +119,4 @@ If you want to pull request, please see [CONTRIBUTING](https://github.com/lunny/ # LICENSE BSD License - [http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/) \ No newline at end of file + [http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/) From ec58fa60ba5d2f088daaada658715ba817e2a8d1 Mon Sep 17 00:00:00 2001 From: James Muranga Date: Tue, 15 Apr 2014 16:52:19 +0300 Subject: [PATCH 2/3] Updated the references to the old repository changed the links to point to https://github.com/go-xorm/xorm not https://github.com/lunny/xorm --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 66bf87a6..58994cf5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Xorm is a simple and powerful ORM for Go. -[![Build Status](https://drone.io/github.com/lunny/xorm/status.png)](https://drone.io/github.com/lunny/xorm/latest) [![Go Walker](http://gowalker.org/api/v1/badge)](http://gowalker.org/github.com/lunny/xorm) [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/lunny/xorm/trend.png)](https://bitdeli.com/free "Bitdeli Badge") +[![Build Status](https://drone.io/github.com/go-xorm/xorm/status.png)](https://drone.io/github.com/go-xorm/xorm/latest) [![Go Walker](http://gowalker.org/api/v1/badge)](http://gowalker.org/github.com/go-xorm/xorm) [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/lunny/go-xorm/trend.png)](https://bitdeli.com/free "Bitdeli Badge") # Features @@ -18,7 +18,7 @@ Xorm is a simple and powerful ORM for Go. * Query Cache speed up -* Database Reverse support, See [Xorm Tool README](https://github.com/lunny/xorm/blob/master/xorm/README.md) +* Database Reverse support, See [Xorm Tool README](https://github.com/go-xorm/xorm/blob/master/xorm/README.md) * Simple cascade loading support @@ -66,25 +66,25 @@ Drivers for Go's sql package which currently support database/sql includes: * Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type * Performance improvement for Get()/Find()/Iterate() -[More changelogs ...](https://github.com/lunny/xorm/blob/master/docs/Changelog.md) +[More changelogs ...](https://github.com/go-xorm/xorm/blob/master/docs/Changelog.md) # Installation If you have [gopm](https://github.com/gpmgo/gopm) installed, - gopm get github.com/lunny/xorm + gopm get github.com/go-xorm/xorm Or - go get github.com/lunny/xorm + go get github.com/go-xorm/xorm # Documents -* [GoDoc](http://godoc.org/github.com/lunny/xorm) +* [GoDoc](http://godoc.org/github.com/go-xorm/xorm) -* [GoWalker](http://gowalker.org/github.com/lunny/xorm) +* [GoWalker](http://gowalker.org/github.com/go-xorm/xorm) -* [Quick Start](https://github.com/lunny/xorm/blob/master/docs/QuickStartEn.md) +* [Quick Start](https://github.com/go-xorm/xorm/blob/master/docs/QuickStartEn.md) # Cases @@ -111,7 +111,7 @@ Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xor # Contributors -If you want to pull request, please see [CONTRIBUTING](https://github.com/lunny/xorm/blob/master/CONTRIBUTING.md) +If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md) * [Lunny](https://github.com/lunny) * [Nashtsai](https://github.com/nashtsai) From 58cdbaeab0898994acc161f037489e629bee1284 Mon Sep 17 00:00:00 2001 From: Nash Tsai Date: Wed, 16 Apr 2014 10:51:18 +0800 Subject: [PATCH 3/3] update xorm 0.3.2 changelog --- README.md | 3 ++- README_CN.md | 13 +++++++++++++ docs/ChangelogCN.md | 13 +++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 58994cf5..425372d9 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,8 @@ Drivers for Go's sql package which currently support database/sql includes: * **v0.3.2** Improvements: - * Add MustCols function + * Add AllCols & MustCols function + * Add TableName for custom table name Bug Fixes: * #46 diff --git a/README_CN.md b/README_CN.md index 5d4d3457..e36eec2e 100644 --- a/README_CN.md +++ b/README_CN.md @@ -42,6 +42,19 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作 ## 更新日志 +* **v0.3.2** + Improvements: + * Add AllCols & MustCols function + * Add TableName for custom table name + + Bug Fixes: + * #46 + * #51 + * #53 + * #89 + * #86 + * #92 + * **v0.3.1** 新特性: diff --git a/docs/ChangelogCN.md b/docs/ChangelogCN.md index 79140be4..259d045e 100644 --- a/docs/ChangelogCN.md +++ b/docs/ChangelogCN.md @@ -1,5 +1,18 @@ ## 更新日志 +* **v0.3.2** + Improvements: + * Add AllCols & MustCols function + * Add TableName for custom table name + + Bug Fixes: + * #46 + * #51 + * #53 + * #89 + * #86 + * #92 + * **v0.3.1** 新特性: