From 5241c3c7c1aeada5fc33f02b28599f4282134003 Mon Sep 17 00:00:00 2001 From: Zach Date: Wed, 19 Dec 2018 14:41:59 -0500 Subject: [PATCH] go one.eleven.four (#3169) --- .circleci/config.yml | 9 +++++---- README.md | 2 +- docs/gaia/installation.md | 2 +- scripts/install/install_sdk_arm.sh | 2 +- scripts/install/install_sdk_bsd.sh | 2 +- scripts/install/install_sdk_ubuntu.sh | 2 +- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 79ea680a0e..b037d5b3b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,9 +3,10 @@ version: 2 defaults: &linux_defaults working_directory: /go/src/github.com/cosmos/cosmos-sdk docker: - - image: circleci/golang:1.11.3 + - image: circleci/golang:1.11.4 environment: GOBIN: /tmp/workspace/bin + GO_VERSION: "1.11.4" ############ @@ -17,7 +18,6 @@ macos_config: &macos_defaults xcode: "10.1.0" working_directory: /Users/distiller/project/src/github.com/cosmos/cosmos-sdk environment: - GO_VERSION: "1.11.4" set_macos_env: &macos_env run: @@ -272,6 +272,7 @@ jobs: GOPATH: /home/circleci/.go_workspace/ GOOS: linux GOARCH: amd64 + GO_VERSION: "1.11.4" parallelism: 1 steps: - checkout @@ -279,8 +280,8 @@ jobs: name: run localnet and exit on failure command: | pushd /tmp - wget https://dl.google.com/go/go1.11.3.linux-amd64.tar.gz - sudo tar -xvf go1.11.3.linux-amd64.tar.gz + wget https://dl.google.com/go/go$GO_VERSION.linux-amd64.tar.gz + sudo tar -xvf go$GO_VERSION.linux-amd64.tar.gz sudo rm -rf /usr/local/go sudo mv go /usr/local popd diff --git a/README.md b/README.md index 56b47678d6..2ab5cf4e2b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ It is being used to build `Gaia`, the first implementation of the Cosmos Hub. **WARNING**: The SDK has mostly stabilized, but we are still making some breaking changes. -**Note**: Requires [Go 1.11.3+](https://golang.org/dl/) +**Note**: Requires [Go 1.11.4+](https://golang.org/dl/) ## Cosmos Hub Public Testnet diff --git a/docs/gaia/installation.md b/docs/gaia/installation.md index a83bc9e088..e8809b6b60 100644 --- a/docs/gaia/installation.md +++ b/docs/gaia/installation.md @@ -14,7 +14,7 @@ echo "export PATH=$PATH:$GOBIN" >> ~/.bash_profile ``` ::: tip -**Go 1.11.3+** is required for the Cosmos SDK. +**Go 1.11.4+** is required for the Cosmos SDK. ::: ### Install the binaries diff --git a/scripts/install/install_sdk_arm.sh b/scripts/install/install_sdk_arm.sh index 35b68f0057..39bbd16e48 100644 --- a/scripts/install/install_sdk_arm.sh +++ b/scripts/install/install_sdk_arm.sh @@ -4,7 +4,7 @@ BRANCH=master REPO=github.com/cosmos/cosmos-sdk -GO_VERSION=1.11.3 +GO_VERSION=1.11.4 sudo apt-get update -y sudo apt-get upgrade -y diff --git a/scripts/install/install_sdk_bsd.sh b/scripts/install/install_sdk_bsd.sh index 1d11474d07..c9d4d3195c 100644 --- a/scripts/install/install_sdk_bsd.sh +++ b/scripts/install/install_sdk_bsd.sh @@ -16,7 +16,7 @@ set BRANCH=master set REPO=github.com/cosmos/cosmos-sdk -set GO_VERSION=1.11.3 +set GO_VERSION=1.11.4 sudo pkg update diff --git a/scripts/install/install_sdk_ubuntu.sh b/scripts/install/install_sdk_ubuntu.sh index 5d98d9ed77..1bf72ef3c4 100644 --- a/scripts/install/install_sdk_ubuntu.sh +++ b/scripts/install/install_sdk_ubuntu.sh @@ -7,7 +7,7 @@ BRANCH=master REPO=github.com/cosmos/cosmos-sdk -GO_VERSION=1.11.3 +GO_VERSION=1.11.4 sudo apt-get update -y sudo apt-get upgrade -y