diff --git a/.circleci/config.yml b/.circleci/config.yml
index 8d08ef8a836..d59939096cb 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,7 +7,7 @@ orbs:
executors:
golang:
docker:
- - image: circleci/golang:1.15.5
+ - image: circleci/golang:1.16.4
resource_class: 2xlarge
ubuntu:
docker:
@@ -379,8 +379,8 @@ jobs:
- run:
name: Install go
command: |
- curl -O https://dl.google.com/go/go1.15.5.darwin-amd64.pkg && \
- sudo installer -pkg go1.15.5.darwin-amd64.pkg -target /
+ curl -O https://dl.google.com/go/go1.16.4.darwin-amd64.pkg && \
+ sudo installer -pkg go1.16.4.darwin-amd64.pkg -target /
- run:
name: Install pkg-config
command: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config
diff --git a/Makefile b/Makefile
index 8baf5941438..9ba6f3c1d7b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,9 +6,9 @@ all: build
unexport GOFLAGS
GOVERSION:=$(shell go version | cut -d' ' -f 3 | sed 's/^go//' | awk -F. '{printf "%d%03d%03d", $$1, $$2, $$3}')
-ifeq ($(shell expr $(GOVERSION) \< 1015005), 1)
+ifeq ($(shell expr $(GOVERSION) \< 1016000), 1)
$(warning Your Golang version is go$(shell expr $(GOVERSION) / 1000000).$(shell expr $(GOVERSION) % 1000000 / 1000).$(shell expr $(GOVERSION) % 1000))
-$(error Update Golang to version to at least 1.15.5)
+$(error Update Golang to version to at least 1.16.0)
endif
# git modules that need to be loaded
diff --git a/README.md b/README.md
index 636c01b4436..76183883468 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
-
+