chore(build): switch to go 1.13
Steven Allen committed
Nov 12, 2019 at 17:36 UTC
dba13955e50cf81315e400e79b0d661c20aabd35
5 files changed
+5
-5
.circleci/config.yml
+1
-1
@@ -28,7 +28,7 @@ default_environment: &default_environment
28
executors:
29
golang:
30
docker:
31
- - image: circleci/golang:1.12
31
+ - image: circleci/golang:1.13
32
working_directory: ~/ipfs/go-ipfs
33
environment:
34
<<: *default_environment
Dockerfile
+1
-1
@@ -1,4 +1,4 @@
1
-FROM golang:1.12.9-buster
1
+FROM golang:1.13.4-buster
2
LABEL maintainer="Steven Allen <steven@stebalien.com>"
3
4
ENV SRC_DIR /go-ipfs
README.md
+1
-1
@@ -149,7 +149,7 @@ PS> scoop install go-ipfs
149
150
### Build from Source
151
152
-go-ipfs's build system requires Go 1.12 and some standard POSIX build tools:
152
+go-ipfs's build system requires Go 1.13 and some standard POSIX build tools:
153
154
* GNU make
155
* Git
go.mod
+1
-1
@@ -107,4 +107,4 @@ require (
107
gopkg.in/cheggaaa/pb.v1 v1.0.28
108
)
109
110
-go 1.12
110
+go 1.13
mk/golang.mk
+1
-1
@@ -1,5 +1,5 @@
1
# golang utilities
2
-GO_MIN_VERSION = 1.12
2
+GO_MIN_VERSION = 1.13
3
export GO111MODULE=on
4
5