Skip to content

Commit 9c3f576

Browse files
unknwonmpsonntag
authored andcommitted
build: require Go 1.14 for using t.Cleanup (#6069)
1 parent 0a996ca commit 9c3f576

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All notable changes to Gogs are documented in this file.
1414

1515
### Changed
1616

17-
- The required Go version to compile source code changed to 1.13.
17+
- The required Go version to compile source code changed to 1.14.
1818
- All assets are now embedded into binary and served from memory by default. Set `[server] LOAD_ASSETS_FROM_DISK = true` to load them from disk. [#5920](https://github.com/gogs/gogs/pull/5920)
1919
- Application and Go versions are removed from page footer and only show in the admin dashboard.
2020
- Build tag for running as Windows Service has been changed from `miniwinsvc` to `minwinsvc`.

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/G-Node/gogs
22

3-
go 1.13
3+
go 1.14
44

55
require (
66
github.com/G-Node/git-module v0.8.4-gnode
@@ -75,5 +75,5 @@ require (
7575
xorm.io/xorm v0.8.0
7676
)
7777

78-
// +heroku goVersion go1.13
78+
// +heroku goVersion go1.14
7979
// +heroku install ./

gogs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build go1.13
1+
// +build go1.14
22

33
// Copyright 2014 The Gogs Authors. All rights reserved.
44
// Use of this source code is governed by a MIT-style
File renamed without changes.

0 commit comments

Comments
 (0)