From a3b1e0655b694d4465b4310098c683bb9a53fe81 Mon Sep 17 00:00:00 2001 From: VaibhavPage Date: Tue, 25 Feb 2020 20:16:06 -0500 Subject: [PATCH] chore: update version --- .travis.yml | 8 -------- Makefile | 2 +- VERSION | 2 +- version.go | 2 +- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index d870efb083..fd72b1ec27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,6 @@ cache: env: global: - DOCKER_PUSH=false - - IMAGE_TAG=v0.12.2 - PATH=$HOME/bin:$PATH before_install: @@ -40,10 +39,3 @@ script: - make test - make all - make test coverage - -deploy: - provider: releases - api_key: $GITHUB_OAUTH_TOKEN - skip_cleanup: true - on: - tags: true diff --git a/Makefile b/Makefile index 43c07cfc6a..f7ae2d3c6b 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ override LDFLAGS += \ # docker image publishing options DOCKER_PUSH?=true IMAGE_NAMESPACE?=argoproj -IMAGE_TAG?=v0.12.1 +IMAGE_TAG?=v0.12.2 BUILD_BINARY?=true ifeq (${DOCKER_PUSH},true) diff --git a/VERSION b/VERSION index aac2dacab4..e96a87111c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.1 \ No newline at end of file +0.12.2 \ No newline at end of file diff --git a/version.go b/version.go index 5333626f5c..a69a61d761 100644 --- a/version.go +++ b/version.go @@ -24,7 +24,7 @@ import ( // Version information set by link flags during build. We fall back to these sane // default values when we build outside the Makefile context (e.g. go build or go test). var ( - version = "v0.12.1" // value from VERSION file + version = "v0.12.2" // value from VERSION file buildDate = "1970-01-01T00:00:00Z" // output from `date -u +'%Y-%m-%dT%H:%M:%SZ'` gitCommit = "" // output from `git rev-parse HEAD` gitTag = "" // output from `git describe --exact-match --tags HEAD` (if clean tree state)