From 0c72ae28592c17dfec199c9fcb1bce6cd10688ec Mon Sep 17 00:00:00 2001 From: Sayan Samanta Date: Tue, 16 Jul 2019 14:57:03 -0700 Subject: [PATCH] bump dep version to 0.5.4 we need the fix for submodules https://github.com/golang/dep/pull/2168 --- make/golang.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/golang.mk b/make/golang.mk index 6035eacf..63f8ab46 100644 --- a/make/golang.mk +++ b/make/golang.mk @@ -1,7 +1,7 @@ # This is the default Clever Golang Makefile. # It is stored in the dev-handbook repo, github.com/Clever/dev-handbook # Please do not alter this file directly. -GOLANG_MK_VERSION := 0.4.0 +GOLANG_MK_VERSION := 0.4.1 SHELL := /bin/bash SYSTEM := $(shell uname -a | cut -d" " -f1 | tr '[:upper:]' '[:lower:]') @@ -39,7 +39,7 @@ $(FGT): golang-ensure-curl-installed: @command -v curl >/dev/null 2>&1 || { echo >&2 "curl not installed. Please install curl."; exit 1; } -DEP_VERSION = v0.4.1 +DEP_VERSION = v0.5.4 DEP_INSTALLED := $(shell [[ -e "bin/dep" ]] && bin/dep version | grep version | grep -v go | cut -d: -f2 | tr -d '[:space:]') # Dep is a tool used to manage Golang dependencies. It is the offical vendoring experiment, but # not yet the official tool for Golang.