misc: require Go 1.12
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
Jakub Sztandera committed
Mar 27, 2019 at 20:30 UTC
f08100022c777982b292466b8612230d4a3c6731
3 files changed
+4
-2
.circleci/config.yml
+1
-1
@@ -33,7 +33,7 @@ defaults: &defaults
33
TRAVIS: 1
34
35
docker:
36
- - image: circleci/golang:1.11
36
+ - image: circleci/golang:1.12
37
38
jobs:
39
gotest:
go.mod
+2
@@ -115,3 +115,5 @@ require (
115
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
116
gotest.tools/gotestsum v0.3.3
117
)
118
+
119
+go 1.12
mk/golang.mk
+1
-1
@@ -1,5 +1,5 @@
1
# golang utilities
2
-GO_MIN_VERSION = 1.11.4
2
+GO_MIN_VERSION = 1.12
3
export GO111MODULE=on
4
5