Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.

Commit d85bb49

Browse files
authored
add opencollective (#926)
1 parent 0f33965 commit d85bb49

File tree

3 files changed

+98
-83
lines changed

3 files changed

+98
-83
lines changed

README.md

Lines changed: 55 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# xorm
2+
13
[中文](https://github.com/go-xorm/xorm/blob/master/README_CN.md)
24

35
Xorm is a simple and powerful ORM for Go.
@@ -6,7 +8,7 @@ Xorm is a simple and powerful ORM for Go.
68
[![](https://goreportcard.com/badge/github.com/go-xorm/xorm)](https://goreportcard.com/report/github.com/go-xorm/xorm)
79
[![Join the chat at https://img.shields.io/discord/323460943201959939.svg](https://img.shields.io/discord/323460943201959939.svg)](https://discord.gg/HuR2CF3)
810

9-
# Features
11+
## Features
1012

1113
* Struct <-> Table Mapping Support
1214

@@ -32,7 +34,7 @@ Xorm is a simple and powerful ORM for Go.
3234

3335
* Postgres schema support
3436

35-
# Drivers Support
37+
## Drivers Support
3638

3739
Drivers for Go's sql package which currently support database/sql includes:
3840

@@ -50,48 +52,17 @@ Drivers for Go's sql package which currently support database/sql includes:
5052

5153
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (experiment)
5254

53-
# Changelog
54-
55-
* **v0.6.6**
56-
* Some bugs fixed
57-
58-
* **v0.6.5**
59-
* Postgres schema support
60-
* vgo support
61-
* Add FindAndCount
62-
* Database special params support via NewEngineWithParams
63-
* Some bugs fixed
64-
65-
* **v0.6.4**
66-
* Automatical Read/Write seperatelly
67-
* Query/QueryString/QueryInterface and action with Where/And
68-
* Get support non-struct variables
69-
* BufferSize on Iterate
70-
* fix some other bugs.
71-
72-
* **v0.6.3**
73-
* merge tests to main project
74-
* add `Exist` function
75-
* add `SumInt` function
76-
* Mysql now support read and create column comment.
77-
* fix time related bugs.
78-
* fix some other bugs.
79-
80-
[More changes ...](https://github.com/go-xorm/manual-en-US/tree/master/chapter-16)
81-
82-
# Installation
55+
## Installation
8356

8457
go get github.com/go-xorm/xorm
8558

86-
# Documents
59+
## Documents
8760

8861
* [Manual](http://xorm.io/docs)
8962

9063
* [GoDoc](http://godoc.org/github.com/go-xorm/xorm)
9164

92-
* [GoWalker](http://gowalker.org/github.com/go-xorm/xorm)
93-
94-
# Quick Start
65+
## Quick Start
9566

9667
* Create Engine
9768

@@ -387,7 +358,52 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern
387358
return session.Commit()
388359
```
389360

390-
# Cases
361+
## Contributing
362+
363+
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.
364+
365+
## Credits
366+
367+
### Contributors
368+
369+
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
370+
<a href="graphs/contributors"><img src="https://opencollective.com/xorm/contributors.svg?width=890&button=false" /></a>
371+
372+
### Backers
373+
374+
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/xorm#backer)]
375+
376+
<a href="https://opencollective.com/xorm#backers" target="_blank"><img src="https://opencollective.com/xorm/backers.svg?width=890"></a>
377+
378+
### Sponsors
379+
380+
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)]
381+
382+
## Changelog
383+
384+
* **v0.7.0**
385+
* Some bugs fixed
386+
387+
* **v0.6.6**
388+
* Some bugs fixed
389+
390+
* **v0.6.5**
391+
* Postgres schema support
392+
* vgo support
393+
* Add FindAndCount
394+
* Database special params support via NewEngineWithParams
395+
* Some bugs fixed
396+
397+
* **v0.6.4**
398+
* Automatical Read/Write seperatelly
399+
* Query/QueryString/QueryInterface and action with Where/And
400+
* Get support non-struct variables
401+
* BufferSize on Iterate
402+
* fix some other bugs.
403+
404+
[More changes ...](https://github.com/go-xorm/manual-en-US/tree/master/chapter-16)
405+
406+
## Cases
391407

392408
* [studygolang](http://studygolang.com/) - [github.com/studygolang/studygolang](https://github.com/studygolang/studygolang)
393409

@@ -423,15 +439,6 @@ return session.Commit()
423439

424440
* [go-blog](http://wangcheng.me) - [github.com/easykoo/go-blog](https://github.com/easykoo/go-blog)
425441

426-
# Discuss
427-
428-
Please visit [Xorm on Google Groups](https://groups.google.com/forum/#!forum/xorm)
429-
430-
# Contributing
431-
432-
If you want to pull request, please see [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
433-
434-
# LICENSE
442+
## LICENSE
435443

436-
BSD License
437-
[http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)
444+
BSD License [http://creativecommons.org/licenses/BSD/](http://creativecommons.org/licenses/BSD/)

README_CN.md

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -52,36 +52,6 @@ xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作
5252

5353
* Oracle: [github.com/mattn/go-oci8](https://github.com/mattn/go-oci8) (试验性支持)
5454

55-
## 更新日志
56-
57-
* **v0.6.6**
58-
* 修正部分Bug
59-
60-
* **v0.6.5**
61-
* 通过 engine.SetSchema 来支持 schema,当前仅支持Postgres
62-
* vgo 支持
63-
* 新增 `FindAndCount` 函数
64-
* 通过 `NewEngineWithParams` 支持数据库特别参数
65-
* 修正部分Bug
66-
67-
* **v0.6.4**
68-
* 自动读写分离支持
69-
* Query/QueryString/QueryInterface 支持与 Where/And 合用
70-
* `Get` 支持获取非结构体变量
71-
* `Iterate` 支持 `BufferSize`
72-
* 修正部分Bug
73-
74-
* **v0.6.3**
75-
* 合并单元测试到主工程
76-
* 新增 `Exist` 方法
77-
* 新增 `SumInt` 方法
78-
* Mysql新增读取和创建字段注释支持
79-
* 新增 `SetConnMaxLifetime` 方法
80-
* 修正了时间相关的Bug
81-
* 修复了一些其它Bug
82-
83-
[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
84-
8555
## 安装
8656

8757
go get github.com/go-xorm/xorm
@@ -390,6 +360,27 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern
390360
return session.Commit()
391361
```
392362

363+
## 贡献
364+
365+
如果您也想为Xorm贡献您的力量,请查看 [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)。您也可以加入QQ群 280360085 技术帮助和讨论。
366+
367+
## Credits
368+
369+
### Contributors
370+
371+
感谢所有的贡献者. [[Contribute](CONTRIBUTING.md)].
372+
<a href="graphs/contributors"><img src="https://opencollective.com/xorm/contributors.svg?width=890&button=false" /></a>
373+
374+
### Backers
375+
376+
感谢我们所有的 backers! 🙏 [[成为 backer](https://opencollective.com/xorm#backer)]
377+
378+
<a href="https://opencollective.com/xorm#backers" target="_blank"><img src="https://opencollective.com/xorm/backers.svg?width=890"></a>
379+
380+
### Sponsors
381+
382+
成为 sponsor 来支持 xorm。您的 logo 将会被显示并被链接到您的网站。 [[成为 sponsor](https://opencollective.com/xorm#sponsor)]
383+
393384
# 案例
394385

395386
* [Go语言中文网](http://studygolang.com/) - [github.com/studygolang/studygolang](https://github.com/studygolang/studygolang)
@@ -424,13 +415,30 @@ return session.Commit()
424415

425416
* [go-blog](http://wangcheng.me) - [github.com/easykoo/go-blog](https://github.com/easykoo/go-blog)
426417

427-
## 讨论
428418

429-
请加入QQ群:280360085 进行讨论。
419+
## 更新日志
420+
421+
* **v0.7.0**
422+
* 修正部分Bug
430423

431-
## 贡献
424+
* **v0.6.6**
425+
* 修正部分Bug
432426

433-
如果您也想为Xorm贡献您的力量,请查看 [CONTRIBUTING](https://github.com/go-xorm/xorm/blob/master/CONTRIBUTING.md)
427+
* **v0.6.5**
428+
* 通过 engine.SetSchema 来支持 schema,当前仅支持Postgres
429+
* vgo 支持
430+
* 新增 `FindAndCount` 函数
431+
* 通过 `NewEngineWithParams` 支持数据库特别参数
432+
* 修正部分Bug
433+
434+
* **v0.6.4**
435+
* 自动读写分离支持
436+
* Query/QueryString/QueryInterface 支持与 Where/And 合用
437+
* `Get` 支持获取非结构体变量
438+
* `Iterate` 支持 `BufferSize`
439+
* 修正部分Bug
440+
441+
[更多更新日志...](https://github.com/go-xorm/manual-zh-CN/tree/master/chapter-16)
434442

435443
## LICENSE
436444

xorm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
const (
1919
// Version show the xorm's version
20-
Version string = "0.6.6.0429"
20+
Version string = "0.7.0.0504"
2121
)
2222

2323
func regDrvsNDialects() bool {

0 commit comments

Comments
 (0)