Skip to content

Commit 1458215

Browse files
committed
chore: bump minimum go version to 1.15
1 parent 6e99535 commit 1458215

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ default_environment: &default_environment
3333
executors:
3434
golang:
3535
docker:
36-
- image: circleci/golang:1.14.4
36+
- image: circleci/golang:1.15.8
3737
working_directory: ~/ipfs/go-ipfs
3838
environment:
3939
<<: *default_environment
@@ -60,7 +60,7 @@ executors:
6060
E2E_IPFSD_TYPE: go
6161
dockerizer:
6262
docker:
63-
- image: circleci/golang:1.14.4
63+
- image: circleci/golang:1.15.8
6464
environment:
6565
IMAGE_NAME: ipfs/go-ipfs
6666
WIP_IMAGE_TAG: wip

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ PS> scoop install go-ipfs
160160

161161
### Build from Source
162162

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:
164164

165165
* GNU make
166166
* Git
@@ -170,7 +170,7 @@ To build without GCC, build with `CGO_ENABLED=0` (e.g., `make build CGO_ENABLED=
170170

171171
#### Install Go
172172

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/).
174174

175175
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`:
176176

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ require (
111111
golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073
112112
)
113113

114-
go 1.14
114+
go 1.15

mk/golang.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang utilities
2-
GO_MIN_VERSION = 1.14.4
2+
GO_MIN_VERSION = 1.15.8
33
export GO111MODULE=on
44

55

0 commit comments

Comments
 (0)