From ef22330563596eecfab2e330d88a0b18d9073e21 Mon Sep 17 00:00:00 2001 From: Anis Elleuch Date: Thu, 22 Sep 2016 18:33:52 +0100 Subject: [PATCH] Require go 1.7.1 to build Minio server (#2727) --- .travis.yml | 2 +- buildscripts/checkdeps.sh | 2 +- cmd/globals.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d046c1b7a..4a060700c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,4 +20,4 @@ after_success: - bash <(curl -s https://codecov.io/bash) go: -- 1.6.2 +- 1.7.1 diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 11a93d5e7..2960ca1a8 100644 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -21,7 +21,7 @@ _init() { ## Minimum required versions for build dependencies GIT_VERSION="1.0" - GO_VERSION="1.6" + GO_VERSION="1.7.1" OSX_VERSION="10.8" UNAME=$(uname -sm) diff --git a/cmd/globals.go b/cmd/globals.go index d24354184..c79445521 100644 --- a/cmd/globals.go +++ b/cmd/globals.go @@ -26,7 +26,7 @@ import ( // Global constants for Minio. const ( - minGoVersion = ">= 1.6" // Minio requires at least Go v1.6 + minGoVersion = ">= 1.7.1" // minimum Go runtime version ) // minio configuration related constants.