diff options
author | Unknwon <u@gogs.io> | 2017-06-07 21:44:18 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-06-07 21:44:18 -0400 |
commit | 089eb1a0993e81cbc852685c48add666e27bbda6 (patch) | |
tree | 90bf26aaa67c9e474d3ada30f04f791271167ecb | |
parent | b40dc550ed15efd2c6faa1ea619888a400499a84 (diff) |
Change required version to Go 1.6
-rw-r--r-- | .travis.yml | 7 | ||||
-rw-r--r-- | gogs.go | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 868b4964..58904389 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,8 @@ language: go go: - - 1.5.x - - 1.6.x - - 1.7.x - - 1.8.x + - 1.6 + - 1.7 + - 1.8 - master before_install: @@ -1,4 +1,4 @@ -// +build go1.5 +// +build go1.6 // Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style |