Skip to content

Commit 0090e33

Browse files
lunnyGitea
authored and
Gitea
committed
Fix go mod and update version (go-xorm#1460)
1 parent b81aa40 commit 0090e33

File tree

6 files changed

+6
-20
lines changed

6 files changed

+6
-20
lines changed

.drone.yml

-14
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@ workspace:
1111
path: src/gitea.com/xorm/xorm
1212

1313
steps:
14-
- name: init_postgres
15-
pull: default
16-
image: postgres:9.5
17-
commands:
18-
- "until psql -U postgres -d xorm_test -h pgsql \\\n -c \"SELECT 1;\" >/dev/null 2>&1; do sleep 1; done\n"
19-
- "psql -U postgres -d xorm_test -h pgsql \\\n -c \"create schema xorm;\"\n"
20-
2114
- name: build
2215
pull: default
2316
image: golang:1.10
@@ -181,13 +174,6 @@ workspace:
181174
path: src/gitea.com/xorm/xorm
182175

183176
steps:
184-
- name: init_postgres
185-
pull: default
186-
image: postgres:9.5
187-
commands:
188-
- "until psql -U postgres -d xorm_test -h pgsql \\\n -c \"SELECT 1;\" >/dev/null 2>&1; do sleep 1; done\n"
189-
- "psql -U postgres -d xorm_test -h pgsql \\\n -c \"create schema xorm;\"\n"
190-
191177
- name: build
192178
pull: default
193179
image: golang:1.11

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Xorm is a simple and powerful ORM for Go.
66

7-
[![Build Status](https://drone.gitea.com/api/badges/xorm/xorm/status.svg)](https://drone.gitea.com/xorm/xorm) [![](http://gocover.io/_badge/xorm.io/xorm)](http://gocover.io/xorm.io/xorm)
7+
[![Build Status](https://drone.gitea.com/api/badges/xorm/xorm/status.svg)](https://drone.gitea.com/xorm/xorm) [![](http://gocover.io/_badge/xorm.io/xorm)](https://gocover.io/xorm.io/xorm)
88
[![](https://goreportcard.com/badge/xorm.io/xorm)](https://goreportcard.com/report/xorm.io/xorm)
99
[![Join the chat at https://img.shields.io/discord/323460943201959939.svg](https://img.shields.io/discord/323460943201959939.svg)](https://discord.gg/HuR2CF3)
1010

README_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
xorm是一个简单而强大的Go语言ORM库. 通过它可以使数据库操作非常简便。
66

7-
[![Build Status](https://drone.gitea.com/api/badges/xorm/builder/status.svg)](https://drone.gitea.com/xorm/builder) [![](http://gocover.io/_badge/xorm.io/xorm)](http://gocover.io/xorm.io/xorm)
7+
[![Build Status](https://drone.gitea.com/api/badges/xorm/builder/status.svg)](https://drone.gitea.com/xorm/builder) [![](http://gocover.io/_badge/xorm.io/xorm)](https://gocover.io/xorm.io/xorm)
88
[![](https://goreportcard.com/badge/xorm.io/xorm)](https://goreportcard.com/report/xorm.io/xorm)
99
[![Join the chat at https://img.shields.io/discord/323460943201959939.svg](https://img.shields.io/discord/323460943201959939.svg)](https://discord.gg/HuR2CF3)
1010

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ require (
1111
github.com/stretchr/testify v1.4.0
1212
github.com/ziutek/mymysql v1.5.4
1313
xorm.io/builder v0.3.6
14-
xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb
14+
xorm.io/core v0.7.2
1515
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWh
145145
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
146146
xorm.io/builder v0.3.6 h1:ha28mQ2M+TFx96Hxo+iq6tQgnkC9IZkM6D8w9sKHHF8=
147147
xorm.io/builder v0.3.6/go.mod h1:LEFAPISnRzG+zxaxj2vPicRwz67BdhFreKg8yv8/TgU=
148-
xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb h1:msX3zG3BPl8Ti+LDzP33/9K7BzO/WqFXk610K1kYKfo=
149-
xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb/go.mod h1:jJfd0UAEzZ4t87nbQYtVjmqpIODugN6PD2D9E+dJvdM=
148+
xorm.io/core v0.7.2 h1:mEO22A2Z7a3fPaZMk6gKL/jMD80iiyNwRrX5HOv3XLw=
149+
xorm.io/core v0.7.2/go.mod h1:jJfd0UAEzZ4t87nbQYtVjmqpIODugN6PD2D9E+dJvdM=

xorm.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
const (
2222
// Version show the xorm's version
23-
Version string = "0.7.0.0504"
23+
Version string = "0.8.0.1015"
2424
)
2525

2626
func regDrvsNDialects() bool {

0 commit comments

Comments
 (0)