From db6a6164218bd7043bca5346f7f8f76b5c2ad672 Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Mon, 9 Oct 2017 12:26:28 -0600 Subject: [PATCH] update Go to 1.9.1 --- CHANGELOG.md | 1 + Dockerfile_build_ubuntu32 | 2 +- Dockerfile_build_ubuntu64 | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c1a89eb..707c170cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ * `dbrp` expressions were added to tickscript. Topic-Handler file format was modified to include the TopicID and HandlerID in the file. Load service was added; the service can load tasks/handlers from a directory. +- [#1606](https://github.com/influxdata/kapacitor/pull/1606): Update Go version to 1.9.1 ### Bugfixes diff --git a/Dockerfile_build_ubuntu32 b/Dockerfile_build_ubuntu32 index b9a15a144..6cfd3be41 100644 --- a/Dockerfile_build_ubuntu32 +++ b/Dockerfile_build_ubuntu32 @@ -33,7 +33,7 @@ RUN wget -q https://github.com/google/protobuf/releases/download/v${PROTO_VERSIO # Install go ENV GOPATH /root/go -ENV GO_VERSION 1.7.5 +ENV GO_VERSION 1.9.1 ENV GO_ARCH 386 RUN wget -q https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \ tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz ; \ diff --git a/Dockerfile_build_ubuntu64 b/Dockerfile_build_ubuntu64 index a34dca39f..7f901485d 100644 --- a/Dockerfile_build_ubuntu64 +++ b/Dockerfile_build_ubuntu64 @@ -43,7 +43,7 @@ RUN wget -q https://github.com/google/protobuf/releases/download/v${PROTO_VERSIO # Install go ENV GOPATH /root/go -ENV GO_VERSION 1.7.5 +ENV GO_VERSION 1.9.1 ENV GO_ARCH amd64 RUN wget -q https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \ tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz ; \