From 3d7a0f54f5607b93e28dadc7bc5ada855c1f93f9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 11 Jun 2018 10:35:39 -0700 Subject: [PATCH] Bump Golang to 1.10.3 go1.10.3 (released 2018/06/05) includes fixes to the go command, and the crypto/tls, crypto/x509, and strings packages. In particular, it adds minimal support to the go command for the vgo transition. See the Go 1.10.3 milestone on our issue tracker for details; https://github.com/golang/go/issues?q=milestone%3AGo1.10.3 Signed-off-by: Sebastiaan van Stijn Upstream-commit: 65fc4f1c0cc81739df97605f1fbf91dbf2e7739f Component: packaging --- components/packaging/Makefile | 2 +- components/packaging/deb/Makefile | 2 +- components/packaging/rpm/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/packaging/Makefile b/components/packaging/Makefile index 536107b077..53e19bc831 100644 --- a/components/packaging/Makefile +++ b/components/packaging/Makefile @@ -3,7 +3,7 @@ ENGINE_DIR:=$(CURDIR)/../engine CLI_DIR:=$(CURDIR)/../cli VERSION?=0.0.0-dev DOCKER_GITCOMMIT:=abcdefg -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 .PHONY: help help: ## show make targets diff --git a/components/packaging/deb/Makefile b/components/packaging/deb/Makefile index 0760b9a0e7..bf3f12571e 100644 --- a/components/packaging/deb/Makefile +++ b/components/packaging/deb/Makefile @@ -4,7 +4,7 @@ ENGINE_DIR:=$(CURDIR)/../../engine CLI_DIR:=$(CURDIR)/../../cli GITCOMMIT?=$(shell cd $(ENGINE_DIR) && git rev-parse --short HEAD) VERSION?=0.0.0-dev -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 DEB_VERSION=$(shell ./gen-deb-ver $(ENGINE_DIR) "$(VERSION)") CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown EPOCH?= diff --git a/components/packaging/rpm/Makefile b/components/packaging/rpm/Makefile index 71b3d582da..c746907c54 100644 --- a/components/packaging/rpm/Makefile +++ b/components/packaging/rpm/Makefile @@ -3,7 +3,7 @@ ENGINE_DIR:=$(CURDIR)/../../engine CLI_DIR:=$(CURDIR)/../../cli GITCOMMIT=$(shell cd $(ENGINE_DIR) && git rev-parse --short HEAD) VERSION?=0.0.0-dev -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 GEN_RPM_VER=$(shell ./gen-rpm-ver $(ENGINE_DIR) $(VERSION)) CHOWN=docker run --rm -i -v $(CURDIR):/v -w /v alpine chown RPMBUILD=docker run --privileged --rm -i\