From 613139e7bef81d3573e7988a47eb6765f3de347a Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 23 Oct 2019 23:03:17 -0700 Subject: Enable Go modules (#5835) * Remove vendor * Enable Go modules * ci: add command to fetch dependencies * ci: update setting * ci: update settings * Require Go 1.11 * Rename module name to gogs.io/gogs --- models/migrations/migrations.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'models/migrations/migrations.go') diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 3d3327ef..eb73a3b9 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -9,11 +9,11 @@ import ( "strings" "time" - "github.com/Unknwon/com" - "github.com/go-xorm/xorm" + "github.com/unknwon/com" + "xorm.io/xorm" log "gopkg.in/clog.v1" - "github.com/gogs/gogs/pkg/tool" + "gogs.io/gogs/pkg/tool" ) const _MIN_DB_VER = 10 @@ -102,9 +102,9 @@ You can migrate your older database using a previous release, then you can upgra Please save following instructions to somewhere and start working: - If you were using below 0.6.0 (e.g. 0.5.x), download last supported archive from following link: - https://github.com/gogs/gogs/releases/tag/v0.7.33 + https://gogs.io/gogs/releases/tag/v0.7.33 - If you were using below 0.7.0 (e.g. 0.6.x), download last supported archive from following link: - https://github.com/gogs/gogs/releases/tag/v0.9.141 + https://gogs.io/gogs/releases/tag/v0.9.141 Once finished downloading, -- cgit v1.2.3