@cryptotaxi247 / kubo / commits / 5a62025cc

chore: bump minimum go version to 1.15

Adin Schmahmann committed Feb 25, 2021 at 16:33 UTC 5a62025cc70a4b352f1d76f0041b638f076e9b7d
4 files changed +6 -6
.circleci/config.yml
+2 -2
@@ -33,7 +33,7 @@ default_environment: &default_environment
33 executors:
34 golang:
35 docker:
36 - - image: circleci/golang:1.14.4
36 + - image: circleci/golang:1.15.8
37 working_directory: ~/ipfs/go-ipfs
38 environment:
39 <<: *default_environment
@@ -60,7 +60,7 @@ executors:
60 E2E_IPFSD_TYPE: go
61 dockerizer:
62 docker:
63 - - image: circleci/golang:1.14.4
63 + - image: circleci/golang:1.15.8
64 environment:
65 IMAGE_NAME: ipfs/go-ipfs
66 WIP_IMAGE_TAG: wip
README.md
+2 -2
@@ -160,7 +160,7 @@ PS> scoop install go-ipfs
160
161 ### Build from Source
162
163 -go-ipfs's build system requires Go 1.14.4 and some standard POSIX build tools:
163 +go-ipfs's build system requires Go 1.15.8 and some standard POSIX build tools:
164
165 * GNU make
166 * Git
@@ -170,7 +170,7 @@ To build without GCC, build with `CGO_ENABLED=0` (e.g., `make build CGO_ENABLED=
170
171 #### Install Go
172
173 -The build process for ipfs requires Go 1.14.4 or higher. If you don't have it: [Download Go 1.14+](https://golang.org/dl/).
173 +The build process for ipfs requires Go 1.15.8 or higher. If you don't have it: [Download Go 1.15+](https://golang.org/dl/).
174
175 You'll need to add Go's bin directories to your `$PATH` environment variable e.g., by adding these lines to your `/etc/profile` (for a system-wide installation) or `$HOME/.profile`:
176
go.mod
+1 -1
@@ -108,4 +108,4 @@ require (
108 golang.org/x/sys v0.0.0-20210503173754-0981d6026fa6
109 )
110
111 -go 1.14
111 +go 1.15
mk/golang.mk
+1 -1
@@ -1,5 +1,5 @@
1 # golang utilities
2 -GO_MIN_VERSION = 1.14.4
2 +GO_MIN_VERSION = 1.15.8
3 export GO111MODULE=on
4
5