From 179bed8f606cfed950ef5322792fcc72ddb8b590 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Fri, 5 Jun 2020 03:15:57 +0200 Subject: [PATCH 1/2] go: bump minimal dependency to 1.14.4 due to major bugfixes in the .4 release --- .circleci/config.yml | 4 ++-- Dockerfile | 2 +- mk/golang.mk | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ae52998aafd..cfeeb88f99c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ default_environment: &default_environment executors: golang: docker: - - image: circleci/golang:1.14.2 + - image: circleci/golang:1.14.4 working_directory: ~/ipfs/go-ipfs environment: <<: *default_environment @@ -60,7 +60,7 @@ executors: E2E_IPFSD_TYPE: go dockerizer: docker: - - image: circleci/golang:1.14.2 + - image: circleci/golang:1.14.4 environment: IMAGE_NAME: ipfs/go-ipfs WIP_IMAGE_TAG: wip diff --git a/Dockerfile b/Dockerfile index 5cd7d54b12d..b210764e327 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14.2-buster +FROM golang:1.14.4-buster LABEL maintainer="Steven Allen " # Install deps diff --git a/mk/golang.mk b/mk/golang.mk index 36d40ea6f24..73073370194 100644 --- a/mk/golang.mk +++ b/mk/golang.mk @@ -1,5 +1,5 @@ # golang utilities -GO_MIN_VERSION = 1.14.2 +GO_MIN_VERSION = 1.14.4 export GO111MODULE=on From cb196d24955ee89519fcb7d2878bccddfff1c8e3 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Fri, 5 Jun 2020 03:16:49 +0200 Subject: [PATCH 2/2] README.md: documentation update, requires at least go 1.14.4 now --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00548dbb0e4..68398327b11 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ To build without GCC, build with `CGO_ENABLED=0` (e.g., `make build CGO_ENABLED= #### Install Go -The build process for ipfs requires Go 1.14.2 or higher. If you don't have it: [Download Go 1.14+](https://golang.org/dl/). +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/). 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`: